-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.05 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.05 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": "nansen-cli",
"version": "1.27.0",
"description": "Command-line interface for Nansen API - designed for AI agents",
"main": "src/index.js",
"type": "module",
"bin": {
"nansen": "./src/index.js"
},
"files": [
"src/**/*.js",
"src/**/*.json",
"!src/__tests__/**",
"skills/**",
"scripts/postinstall.js",
"CHANGELOG.md"
],
"scripts": {
"postinstall": "node scripts/postinstall.js",
"start": "node src/index.js",
"pretest": "node scripts/check-changeset.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:live": "NANSEN_LIVE_TEST=1 vitest run",
"test:trade": "vitest run --config vitest.e2e.config.js src/__tests__/trade.e2e.test.js",
"test:send": "vitest run --config vitest.e2e.config.js src/__tests__/send.e2e.test.js",
"test:privy": "vitest run --config vitest.e2e.config.js src/__tests__/privy.e2e.test.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"changeset": "changeset",
"changeset:version": "changeset version && npm install --package-lock-only",
"changeset:publish": "changeset publish"
},
"keywords": [
"nansen",
"crypto",
"blockchain",
"api",
"cli",
"ai-agent",
"smart-money",
"onchain",
"defi",
"solana",
"ethereum"
],
"author": "Nansen <dev@nansen.ai>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nansen-ai/nansen-cli.git"
},
"bugs": {
"url": "https://github.com/nansen-ai/nansen-cli/issues"
},
"homepage": "https://github.com/nansen-ai/nansen-cli#readme",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.4",
"@eslint/js": "^10.0.1",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.2",
"globals": "^17.4.0",
"vitest": "^4.0.18"
},
"dependencies": {
"@ethereumjs/rlp": "^10.1.1",
"@noble/curves": "^2.0.1",
"@noble/hashes": "^2.0.1",
"@scure/base": "^2.0.0"
}
}