-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.49 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
{
"name": "@devcodex/capability-graph",
"version": "1.0.1",
"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",
"build:tests": "node scripts/build-tests.mjs",
"prepack": "npm run build",
"pretest": "npm run build && npm run test:types",
"test": "npm run build:tests && 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 && npm run build:tests",
"evaluate": "node scripts/evaluate-seed.mjs"
},
"devDependencies": {
"@types/node": "22.18.6",
"typescript": "5.9.2"
},
"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://devcodex-labs.github.io/capability-graph/",
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"bcp-47": "2.1.1",
"language-subtag-registry": "0.4.2"
}
}