-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 883 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 883 Bytes
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
{
"name": "codemap",
"version": "0.2.0",
"license": "MIT",
"type": "module",
"bin": {
"codemap": "dist/cli.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"build:bun": "bun build src/cli.ts --compile --outfile dist/codemap",
"test": "vitest run"
},
"dependencies": {
"better-sqlite3": "^11.0.0",
"micromatch": "^4.0.5",
"tree-sitter": "^0.21.1",
"tree-sitter-cpp": "^0.22.0",
"tree-sitter-rust": "0.23.1",
"ts-morph": "^24.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.8",
"@types/micromatch": "^4.0.6",
"@types/node": "^20.0.0",
"@types/yargs": "^17.0.32",
"typescript": "^5.4.0",
"vitest": "^3.0.0"
}
}