-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.26 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
{
"name": "vtrace",
"description": "Repo-bound, local-first code indexing and MCP tool.",
"version": "0.1.0",
"type": "module",
"private": true,
"bin": {
"vtrace": "./bin/vtrace"
},
"scripts": {
"test": "bun test",
"typecheck": "tsc --noEmit",
"typecheck:benchmarks": "tsc -p tsconfig.benchmarks.json",
"lint": "bun run typecheck && bun run typecheck:benchmarks",
"format:check": "prettier --ignore-unknown --check README.md docs/**/*.md package.json tsconfig.json .github/workflows/*.yml LICENSE CHANGELOG.md CONTRIBUTING.md SECURITY.md",
"format": "prettier --ignore-unknown --write README.md docs/**/*.md package.json tsconfig.json .github/workflows/*.yml LICENSE CHANGELOG.md CONTRIBUTING.md SECURITY.md",
"vscode:copy-bin": "node vscode-extension/scripts/copy-bin.mjs",
"package:vscode": "bun run vscode:copy-bin && cd vscode-extension && ../node_modules/.bin/vsce package --no-dependencies --allow-missing-repository --skip-license --out vtrace-vscode.vsix"
},
"dependencies": {
"tree-sitter": "^0.21.1",
"tree-sitter-typescript": "^0.23.2"
},
"devDependencies": {
"@types/bun": "^1.3.0",
"@types/node": "^24.0.0",
"@vscode/vsce": "^3.6.0",
"prettier": "^3.6.0",
"typescript": "^5.9.0"
}
}