-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.49 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.49 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
77
78
79
80
81
82
83
84
85
86
{
"name": "@1inch/sdks",
"version": "0.0.0",
"private": true,
"description": "1inch Protocol SDKs monorepo managed with NX",
"scripts": {
"nx": "nx",
"graph": "./scripts/generate-graph.sh",
"graph:view": "./scripts/graph-view.sh",
"affected": "nx affected",
"affected:build": "nx affected -t build",
"affected:test": "nx affected -t test",
"affected:lint": "nx affected -t lint",
"affected:lint:fix": "nx affected -t lint --fix",
"build": "nx run-many -t build",
"build:contracts": "forge build",
"test": "nx run-many -t test",
"test:e2e": "nx run-many -t test:e2e",
"lint": "nx run-many -t lint",
"lint:fix": "nx run-many -t lint --fix",
"lint:types": "nx run-many -t type-check",
"format": "nx format:write",
"format:check": "nx format:check",
"clean": "nx run-many -t clean && rimraf node_modules dist .nx",
"reset": "nx reset",
"test:workflows": "act -l",
"clean:graph": "rm -rf dist/graphs static *-graph.html"
},
"keywords": [
"1inch",
"sdk",
"typescript",
"defi",
"protocol"
],
"author": "@1inch",
"repository": {
"type": "git",
"url": "ssh://[email protected]:1inch/sdks.git"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.0.0"
},
"packageManager": "[email protected]",
"volta": {
"node": "22.13.1"
},
"dependencies": {
"@1inch/byte-utils": "3.0.0"
},
"devDependencies": {
"@1inch/aqua": "github:1inch/aqua",
"@1inch/eslint-config": "^3.0.8",
"@1inch/swap-vm": "github:1inch/swap-vm",
"@1inch/tsconfig": "^1.0.12",
"@nx/devkit": "^22.1.1",
"@nx/eslint": "^22.1.1",
"@nx/js": "^22.1.1",
"@nx/vitest": "^22.1.1",
"@nx/workspace": "^22.1.1",
"@swc-node/register": "^1.11.1",
"@types/node": "^22.19.1",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-unicorn": "^59.0.1",
"eslint-plugin-unused-imports": "^4.3.0",
"nx": "^22.1.1",
"prettier": "^3.6.2",
"testcontainers": "11.7.2",
"ts-node": "^10.9.2",
"tsdown": "^0.16.6",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "5.1.4",
"vitest": "^3.2.4"
}
}