-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.67 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
{
"name": "solidkg",
"version": "0.8.0",
"private": true,
"packageManager": "pnpm@10.34.5",
"license": "MIT",
"description": "Local-first code intelligence and an MCP server for AI coding agents.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"solidkg": "./dist/bin/solidkg.js"
},
"files": [
"dist",
"scripts",
"LICENSE",
"README.md",
"docs/THIRD_PARTY_LICENSES.md",
"docs/third-party-licenses"
],
"scripts": {
"build": "pnpm run prepare:native-runtime && pnpm run clean && tsc && pnpm run copy-assets && node scripts/strip-bin-comments.mjs && node -e \"require('fs').chmodSync('dist/bin/solidkg.js', 0o755)\"",
"prepare:native-runtime": "node scripts/prepare-native-runtime.mjs",
"pretest": "pnpm run prepare:native-runtime",
"preuninstall": "node dist/bin/uninstall.js",
"copy-assets": "node -e \"const fs=require('fs');fs.mkdirSync('dist/db',{recursive:true});fs.copyFileSync('src/db/schema.sql','dist/db/schema.sql');fs.mkdirSync('dist/extraction',{recursive:true});fs.copyFileSync('src/extraction/native-grammars.json','dist/extraction/native-grammars.json')\"",
"dev": "tsc --watch",
"cli": "pnpm run build && node dist/bin/solidkg.js",
"test": "vitest run",
"test:public": "vitest run --testTimeout 15000",
"test:watch": "vitest",
"clean": "node -e \"const fs=require('fs');fs.rmSync('dist',{recursive:true,force:true})\"",
"prepublishOnly": "node scripts/guard-root-publish.mjs",
"readiness:artifacts": "node scripts/readiness/verify-release-artifacts.mjs",
"verify:source": "node scripts/readiness/verify-source-checkout.mjs",
"verify:source:full": "pnpm run verify:source && pnpm run test:public && pnpm run readiness:artifacts",
"install:source": "pnpm run build && pnpm link --global"
},
"keywords": [
"code-intelligence",
"knowledge-graph",
"static-analysis"
],
"author": "",
"dependencies": {
"@bufbuild/protobuf": "^2.12.0",
"@c4312/scip": "^0.1.0",
"@sourcegraph/scip-typescript": "0.4.0",
"@xberg-io/tree-sitter-language-pack": "1.13.1",
"chokidar": "^4.0.3",
"commander": "^14.0.2",
"ignore": "^7.0.5",
"jsonc-parser": "^3.3.1",
"picomatch": "^4.0.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^24.12.4",
"@types/picomatch": "^4.0.2",
"typescript": "^6.0.3",
"vite": "^8.0.14",
"vitest": "^4.1.7"
},
"engines": {
"node": ">=24.0.0"
}
}