-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.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
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
{
"name": "graphkeeper",
"version": "0.4.1",
"description": "Grounded, auditable memory for coding agents.",
"homepage": "https://github.com/anusbutt/Graph_Keeper#readme",
"bugs": {
"url": "https://github.com/anusbutt/Graph_Keeper/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anusbutt/Graph_Keeper.git"
},
"type": "module",
"main": "./dist/src/cli.js",
"types": "./dist/src/cli.d.ts",
"exports": {
".": {
"types": "./dist/src/cli.d.ts",
"import": "./dist/src/cli.js"
}
},
"bin": {
"graphkeeper": "dist/src/cli.js"
},
"files": [
"dist/src",
"scripts/validate.sh",
"scripts/validate.mjs",
"templates",
"examples",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"scripts": {
"validator:build": "node scripts/build-validator.mjs",
"validator:check": "node scripts/build-validator.mjs --check",
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "npm run build && node scripts/run-tests.mjs",
"test:functional": "npm run build && node scripts/run-tests.mjs dist/tests/unit dist/tests/integration dist/tests/e2e dist/tests/security",
"test:unit": "npm run build && node scripts/run-tests.mjs dist/tests/unit",
"test:integration": "npm run build && node scripts/run-tests.mjs dist/tests/integration",
"test:e2e": "npm run build && node scripts/run-tests.mjs dist/tests/e2e",
"test:security": "npm run build && node scripts/run-tests.mjs dist/tests/security",
"test:performance": "npm run build && node scripts/run-tests.mjs dist/tests/performance",
"package:smoke": "npm pack --dry-run",
"prepack": "npm run validator:check && npm run build",
"release:verify": "npm run typecheck && npm run test:functional && npm run package:smoke",
"prepublishOnly": "npm run release:verify"
},
"engines": {
"node": ">=18"
},
"keywords": [
"ai-agents",
"cli",
"coding-agents",
"developer-tools",
"git",
"knowledge-graph",
"local-first",
"memory",
"provenance",
"typescript",
"validation"
],
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^18.19.0",
"esbuild": "^0.28.2",
"typescript": "^5.9.0"
}
}