-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.74 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "punuy-eval",
"version": "4.1.0",
"description": "",
"main": "index.js",
"scripts": {
"typecheck": "tsc -b tsconfig.json",
"typecheck:watch": "tsc -b tsconfig.json --watch",
"build": "tsc -b tsconfig.json",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags && gh release create v$npm_package_version --title v$npm_package_version --generate-notes",
"lint": "eslint .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"clean": "tsc -b tsconfig.json --clean",
"test": "NODE_ENV=test vitest",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"postinstall": "patch-package"
},
"files": [
"dist/**/*"
],
"author": "André Santos",
"license": "ISC",
"dependencies": {
"@anthropic-ai/sdk": "0.31.0",
"@google/generative-ai": "0.21.0",
"@mistralai/mistralai": "1.1.0",
"@sinclair/typebox": "0.33.17",
"@stdlib/stats-pcorrtest": "0.2.2",
"cohere-ai": "7.14.0",
"console-table-printer": "2.12.1",
"dotenv": "16.4.5",
"fastest-levenshtein": "1.0.16",
"nodeplotlib": "1.1.2",
"openai": "4.69.0",
"picocolors": "1.1.1",
"pino": "9.5.0",
"punuy-datasets": "github:andrefs/punuy-datasets#v7.1.0",
"tsx": "4.19.2",
"unplugin-auto-import": "0.18.3"
},
"devDependencies": {
"@eslint/eslintrc": "3.1.0",
"@eslint/js": "9.13.0",
"@types/node": "22.8.6",
"@typescript-eslint/eslint-plugin": "8.12.2",
"@typescript-eslint/parser": "8.12.2",
"eslint": "9.13.0",
"eslint-config-prettier": "9.1.0",
"patch-package": "8.0.0",
"pino-pretty": "11.3.0",
"prettier": "3",
"vitest": "2.1.4"
}
}