-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.3 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
{
"name": "@devcodex-labs/capability-graph",
"version": "0.0.0",
"description": "Framework-agnostic capability graph engine for AI coding systems and developer tooling.",
"license": "Apache-2.0",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "node scripts/build.mjs",
"prepack": "npm run build",
"pretest": "npm run build && npm run test:types",
"test": "tsc -p tsconfig.test.json && node scripts/run-tests.mjs",
"test:types": "tsc -p tsconfig.consumer.json",
"pretest:package": "npm run build",
"test:package": "node scripts/test-package.mjs",
"preevaluate": "npm run build && tsc -p tsconfig.test.json",
"evaluate": "node scripts/evaluate-seed.mjs"
},
"devDependencies": {
"typescript": "5.9.2",
"@types/node": "22.18.6"
},
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/devcodex-labs/capability-graph.git"
},
"bugs": {
"url": "https://github.com/devcodex-labs/capability-graph/issues"
},
"homepage": "https://github.com/devcodex-labs/capability-graph#readme",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}