-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1007 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1007 Bytes
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
{
"name": "sprang",
"private": true,
"type": "module",
"description": "The qualitative leap — a knowledge graph for Devin Desktop that turns codebase comprehension into a single discontinuous moment.",
"license": "MIT",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=10.0.0"
},
"scripts": {
"build": "pnpm -r --filter './packages/*' build",
"test": "pnpm -r --filter './packages/*' test",
"typecheck": "pnpm -r --filter './packages/*' typecheck",
"lint": "eslint .",
"dev:dashboard": "pnpm --filter @sprang/dashboard dev",
"clean": "pnpm -r --filter './packages/*' exec rm -rf dist *.tsbuildinfo"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"eslint": "^9.0.0",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^16.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0"
},
"pnpm": {
"overrides": {
"hono@<4.12.25": ">=4.12.25",
"got@<11.8.5": ">=11.8.5"
}
}
}