-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.05 KB
/
package.json
File metadata and controls
58 lines (58 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
{
"name": "@butttons/dora",
"version": "2.0.0",
"module": "src/index.ts",
"type": "module",
"description": "Fast code intelligence for AI agents. Query symbols, dependencies, and references without reading files.",
"bin": {
"dora": "./dist/index.js"
},
"files": [
"dist/index.js",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/butttons/dora"
},
"author": {
"name": "butttons"
},
"license": "MIT",
"scripts": {
"test": "bun test ./test/",
"type-check": "tsc",
"build": "bun build src/index.ts --compile --outfile dist/dora",
"build:npm": "bun build src/index.ts --outfile dist/index.js --target bun",
"generate-proto": "protoc --plugin=./node_modules/.bin/protoc-gen-es --es_out=src/converter --es_opt=target=ts --proto_path=src/proto src/proto/scip.proto",
"biome:format": "biome format --write ./src ./test",
"build:linux": "bun build src/index.ts --compile --target=bun-linux-x64 --outfile dist/dora-linux-x64",
"build:macos": "bun build src/index.ts --compile --target=bun-darwin-x64 --outfile dist/dora-darwin-x64",
"build:macos-arm": "bun build src/index.ts --compile --target=bun-darwin-arm64 --outfile dist/dora-darwin-arm64",
"build:windows": "bun build src/index.ts --compile --target=bun-windows-x64 --outfile dist/dora-windows-x64.exe",
"build:all": "bun run build:linux && bun run build:macos && bun run build:macos-arm && bun run build:windows",
"changeset:add": "changeset add",
"changeset:version": "changeset version"
},
"dependencies": {
"@bufbuild/protobuf": "^2.10.2",
"@changesets/cli": "^2.29.8",
"@modelcontextprotocol/sdk": "^1.25.3",
"@toon-format/toon": "^2.1.0",
"commander": "^14.0.2",
"debug": "^4.4.3",
"ignore": "^5.3.0",
"ts-pattern": "^5.9.0",
"web-tree-sitter": "^0.26.6",
"zod": "^4.3.5"
},
"devDependencies": {
"@bufbuild/protoc-gen-es": "^2.10.2",
"@types/bun": "latest",
"@types/debug": "^4.1.12"
},
"peerDependencies": {
"typescript": "^5"
}
}