-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.33 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.33 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
{
"name": "nansen-redstring",
"version": "1.0.0",
"description": "On-chain forensic investigation engine — map wallet networks as interactive 3D graphs",
"type": "module",
"main": "dist/index.js",
"bin": {
"redstring": "dist/index.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint 'src/**/*.{ts,js}' 'tests/**/*.{ts,js}'",
"typecheck": "tsc --noEmit",
"ci": "npm run typecheck && npm run test:coverage",
"capture": "tsx scripts/capture.ts",
"demo:terminal": "bash scripts/demo-terminal.sh"
},
"keywords": [
"nansen",
"forensics",
"investigation",
"wallet",
"graph",
"3d",
"webgl",
"cli",
"crypto",
"blockchain"
],
"author": "edycutjong",
"license": "MIT",
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.4.0",
"commander": "^13.1.0",
"open": "^10.1.0",
"ora": "^8.2.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.12.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^10.1.0",
"puppeteer": "^24.40.0",
"puppeteer-screen-recorder": "^3.0.6",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.57.2",
"vitest": "^3.1.0"
}
}