-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.31 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.31 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
{
"name": "tracer",
"version": "0.1.0",
"description": "Visualize your codebase architecture. Trace every connection.",
"main": "dist/cli/index.js",
"bin": {
"tracer": "dist/cli/index.js"
},
"scripts": {
"postinstall": "node -e \"require('fs').copyFileSync('./node_modules/3d-force-graph/dist/3d-force-graph.min.js', './src/ui/3d-force-graph.min.js')\"",
"build": "tsc",
"dev": "ts-node src/cli/index.ts",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "eslint src/ tests/",
"typecheck": "tsc --noEmit",
"test:mutation": "stryker run"
},
"dependencies": {
"3d-force-graph": "^1.79.1",
"chalk": "^5.0.0",
"commander": "^12.0.0",
"express": "^4.18.0",
"helmet": "^8.1.0",
"open": "^10.0.0",
"ora": "^8.0.0",
"tree-sitter": "^0.21.0",
"tree-sitter-typescript": "^0.21.0"
},
"devDependencies": {
"@stryker-mutator/core": "^9.6.0",
"@stryker-mutator/typescript-checker": "^9.6.0",
"@stryker-mutator/vitest-runner": "^9.6.0",
"@types/express": "^4.17.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-v8": "^1.0.0",
"eslint": "^8.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
}
}