@butttons/dora 1.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +525 -0
  3. package/dist/index.js +34960 -0
  4. package/package.json +52 -0
package/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "@butttons/dora",
3
+ "version": "1.6.1",
4
+ "module": "src/index.ts",
5
+ "type": "module",
6
+ "description": "Fast code intelligence for AI agents. Query symbols, dependencies, and references without reading files.",
7
+ "bin": {
8
+ "dora": "./dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist/index.js",
12
+ "README.md",
13
+ "LICENSE"
14
+ ],
15
+ "author": {
16
+ "name": "butttons"
17
+ },
18
+ "license": "MIT",
19
+ "scripts": {
20
+ "test": "bun test ./test/",
21
+ "type-check": "tsc",
22
+ "build": "bun build src/index.ts --compile --outfile dist/dora",
23
+ "build:npm": "bun build src/index.ts --outfile dist/index.js --target bun",
24
+ "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",
25
+ "biome:format": "biome format --write ./src",
26
+ "build:linux": "bun build src/index.ts --compile --target=bun-linux-x64 --outfile dist/dora-linux-x64",
27
+ "build:macos": "bun build src/index.ts --compile --target=bun-darwin-x64 --outfile dist/dora-darwin-x64",
28
+ "build:macos-arm": "bun build src/index.ts --compile --target=bun-darwin-arm64 --outfile dist/dora-darwin-arm64",
29
+ "build:windows": "bun build src/index.ts --compile --target=bun-windows-x64 --outfile dist/dora-windows-x64.exe",
30
+ "build:all": "bun run build:linux && bun run build:macos && bun run build:macos-arm && bun run build:windows",
31
+ "changeset:add": "changeset add",
32
+ "changeset:version": "changeset version"
33
+ },
34
+ "dependencies": {
35
+ "@bufbuild/protobuf": "^2.10.2",
36
+ "@changesets/cli": "^2.29.8",
37
+ "@modelcontextprotocol/sdk": "^1.25.3",
38
+ "commander": "^14.0.2",
39
+ "debug": "^4.4.3",
40
+ "ignore": "^5.3.0",
41
+ "ts-pattern": "^5.9.0",
42
+ "zod": "^4.3.5"
43
+ },
44
+ "devDependencies": {
45
+ "@bufbuild/protoc-gen-es": "^2.10.2",
46
+ "@types/bun": "latest",
47
+ "@types/debug": "^4.1.12"
48
+ },
49
+ "peerDependencies": {
50
+ "typescript": "^5"
51
+ }
52
+ }