forked from Uniswap/uniswap-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.03 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.03 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@uniswap-ai/source",
"version": "0.0.0",
"license": "MIT",
"type": "module",
"packageManager": "npm@11.7.0",
"engines": {
"node": ">=22.x",
"npm": ">=11.7.0"
},
"scripts": {
"build": "nx run-many --target=build --all",
"lint": "nx run-many --target=lint --all",
"test": "nx run-many --target=test --all",
"format": "nx format:write",
"format:check": "nx format:check",
"docs:dev": "nx run docs:dev",
"docs:build": "nx run docs:build",
"docs:preview": "nx run docs:preview",
"docs:api": "nx run evals:generate-api-docs",
"docs:lint": "vale docs/",
"prepare": "node scripts/prepare.cjs",
"lefthook": "npx lefthook run pre-commit"
},
"private": true,
"devDependencies": {
"@anthropic-ai/sdk": "0.72.1",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.34.0",
"@nx/devkit": "22.0.2",
"@nx/eslint": "22.0.2",
"@nx/eslint-plugin": "22.0.2",
"@nx/jest": "22.0.2",
"@nx/js": "22.0.2",
"@swc-node/register": "~1.9.1",
"@swc/cli": "~0.6.0",
"@swc/core": "^1.14.0",
"@swc/helpers": "~0.5.11",
"@swc/jest": "~0.2.38",
"gray-matter": "^4.0.3",
"@types/jest": "^30.0.0",
"@types/node": "20.19.9",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-import": "^2.32.0",
"jest": "^30.0.2",
"jest-environment-node": "^30.0.2",
"jsonc-eslint-parser": "^2.1.0",
"lefthook": "^1.12.3",
"markdownlint-cli2": "^0.20.0",
"nx": "22.0.2",
"prettier": "^2.6.2",
"promptfoo": "0.120.22",
"ts-jest": "^29.4.0",
"tslib": "^2.3.0",
"tsx": "^4.20.6",
"typedoc": "^0.28.0",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "5.9.3",
"typescript-eslint": "^8.29.0",
"vitepress": "1.6.4"
},
"workspaces": [
"packages/*",
"packages/plugins/*",
"packages/sdk/*"
],
"nx": {
"includedScripts": []
},
"overrides": {
"esbuild": "^0.25.0"
}
}