-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.87 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.87 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@stainless-code/codemap",
"version": "0.2.2",
"description": "Query your codebase — structural SQLite index for AI agents",
"keywords": [
"agents",
"ai",
"codebase",
"dependencies",
"imports",
"index",
"sqlite",
"symbols"
],
"homepage": "https://github.com/stainless-code/codemap#readme",
"bugs": {
"url": "https://github.com/stainless-code/codemap/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stainless-code/codemap.git"
},
"bin": {
"codemap": "./dist/index.mjs"
},
"files": [
"CHANGELOG.md",
"dist",
"templates"
],
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"benchmark": "bun src/benchmark.ts",
"benchmark:query": "bun scripts/benchmark-query-output.ts",
"build": "tsdown",
"changeset": "changeset",
"check": "bun run build && bun run --parallel format:check lint:ci test typecheck && bun run test:golden",
"check-updates": "bun update -i --latest",
"clean": "git clean -xdf -e .env -e .codemap.db -e .codemap.db-wal -e .codemap.db-shm",
"dev": "bun src/index.ts",
"fix": "bun run lint:fix && bun run format",
"format": "oxfmt",
"format:check": "oxfmt --check --no-error-on-unmatched-pattern",
"lint": "oxlint",
"lint-staged": "lint-staged",
"lint:ci": "oxlint --quiet",
"lint:fix": "oxlint --fix",
"pack": "bun run build && npm pack",
"prepare": "husky || true",
"prepublishOnly": "bun run build",
"qa:external": "bun scripts/qa-external-repo.ts",
"release": "changeset publish",
"test": "bun test",
"test:ci": "bun run test:coverage",
"test:coverage": "bun test --coverage",
"test:golden": "bun scripts/query-golden.ts",
"test:golden:external": "bun scripts/query-golden.ts --corpus external",
"typecheck": "tsgo --noEmit",
"version": "changeset version && bun run format CHANGELOG.md"
},
"dependencies": {
"@clack/prompts": "^1.2.0",
"better-sqlite3": "^12.8.0",
"lightningcss": "^1.32.0",
"oxc-parser": "^0.124.0",
"oxc-resolver": "^11.19.1",
"tinyglobby": "^0.2.15",
"zod": "^4.3.6"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@types/better-sqlite3": "^7.6.13",
"@types/bun": "^1.3.11",
"@types/node": "^25.5.2",
"@typescript/native-preview": "^7.0.0-dev.20260407.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"tsdown": "^0.21.7",
"typescript": "^6.0.2"
},
"engines": {
"bun": ">=1.0.0",
"node": "^20.19.0 || >=22.12.0"
},
"contributing": ".github/CONTRIBUTING.md"
}