-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
141 lines (141 loc) · 4.99 KB
/
Copy pathpackage.json
File metadata and controls
141 lines (141 loc) · 4.99 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "@stainless-code/codemap",
"version": "0.11.4",
"description": "Local codebase intelligence for AI agents — a SQLite index of symbols, imports, and calls. SQL and recipes instead of scanning the tree.",
"keywords": [
"agents",
"ai",
"codebase",
"dependencies",
"imports",
"index",
"sqlite",
"symbols"
],
"homepage": "https://stainless-code.com/codemap",
"bugs": {
"url": "https://github.com/stainless-code/codemap/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/stainless-code/codemap.git"
},
"bin": {
"codemap": "./dist/index.mjs"
},
"workspaces": [
".",
"apps/*"
],
"files": [
"CHANGELOG.md",
"dist",
"templates"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"publishConfig": {
"access": "public",
"provenance": true
},
"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 test:scripts typecheck && bun run test:golden && bun run test:agent-eval",
"check-updates": "bun update -i --latest",
"check:pack": "attw --pack . --profile esm-only && publint",
"check:perf-baseline": "bun scripts/check-perf-baseline.ts",
"check:perf-baseline:update": "bun scripts/check-perf-baseline.ts --update",
"clean": "git clean -xdf -e .env -e docs/research/scratch",
"dev": "bun src/index.ts",
"docs:api": "bun apps/docs/scripts/rewrite-api-links.ts --clean && typedoc && bun apps/docs/scripts/rewrite-api-links.ts",
"docs:audit": "bun run --filter '@stainless-code/codemap-docs' audit",
"docs:build": "bun run --filter '@stainless-code/codemap-docs' build",
"docs:check": "bun run --filter '@stainless-code/codemap-docs' check",
"docs:dev": "bun run --filter '@stainless-code/codemap-docs' dev",
"docs:preview": "bun run --filter '@stainless-code/codemap-docs' preview",
"docs:validate": "bun run --filter '@stainless-code/codemap-docs' validate",
"fix": "bun run lint:fix && bun run format",
"fix:changes": "bun run lint:fix:changes && bun run format:changes",
"format": "oxfmt --no-error-on-unmatched-pattern",
"format:changes": "bun scripts/run-on-changed-files.ts format",
"format:check": "oxfmt --check --no-error-on-unmatched-pattern",
"lint": "oxlint --no-error-on-unmatched-pattern",
"lint-staged": "lint-staged",
"lint:changes": "bun scripts/run-on-changed-files.ts lint",
"lint:ci": "oxlint --quiet",
"lint:fix": "bun run lint --fix",
"lint:fix:changes": "bun scripts/run-on-changed-files.ts lint:fix",
"pack": "bun run build && npm pack",
"prepare": "husky || true",
"prepublishOnly": "bun run check && bun run check:pack",
"qa:external": "bun scripts/qa-external-repo.ts",
"release": "changeset publish",
"test": "bun test ./src",
"test:agent-eval": "bun test scripts/agent-eval",
"test:ci": "bun run test:coverage",
"test:coverage": "bun test --coverage --coverage-threshold=0.75 ./src",
"test:golden": "bun scripts/query-golden.ts",
"test:golden:external": "bun scripts/query-golden.ts --corpus external",
"test:scripts": "bash -c 'files=$(find scripts -name \"*.test.mjs\"); if [ -z \"$files\" ]; then echo \"no scripts test files found\" >&2; exit 1; fi; exec bun test $files'",
"typecheck": "tsgo --noEmit",
"upgrade-packages:evidence": "bun run scripts/upgrade-packages/evidence.ts",
"version": "changeset version && bun run format CHANGELOG.md"
},
"dependencies": {
"@clack/prompts": "1.7.0",
"@modelcontextprotocol/sdk": "1.29.0",
"better-sqlite3": "12.11.1",
"chokidar": "5.0.0",
"lightningcss": "1.33.0",
"oxc-parser": "0.140.0",
"oxc-resolver": "11.24.2",
"package-manager-detector": "1.7.0",
"tinyglobby": "0.2.17",
"zod": "4.4.3"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.5",
"@changesets/changelog-github": "0.7.0",
"@changesets/cli": "2.31.1",
"@types/better-sqlite3": "7.6.13",
"@types/bun": "1.3.14",
"@types/node": "26.1.1",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"husky": "9.1.7",
"lint-staged": "17.1.0",
"oxfmt": "0.59.0",
"oxlint": "1.74.0",
"publint": "0.3.21",
"tsdown": "0.22.12",
"typedoc": "0.28.20",
"typedoc-plugin-frontmatter": "1.3.1",
"typedoc-plugin-markdown": "4.12.0",
"typescript": "6.0.3",
"unrun": "0.3.1"
},
"overrides": {
"@ai-sdk/provider-utils": "4.0.33",
"hono": ">=4.12.25",
"js-yaml": "4.3.0",
"path-to-regexp": "6.3.0",
"qs": ">=6.15.2"
},
"engines": {
"bun": ">=1.0.31",
"node": "^20.19.0 || >=22.12.0"
},
"packageManager": "bun@1.3.14",
"contributing": ".github/CONTRIBUTING.md"
}