-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.75 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.75 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
{
"name": "context-kernel",
"version": "0.1.0",
"description": "Platform-agnostic context kernel for routing, budget management, policy guards, and audit trails.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"context-kernel": "dist/cli/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./core": {
"types": "./dist/core/index.d.ts",
"import": "./dist/core/index.js"
},
"./adapters/openclaw": {
"types": "./dist/adapters/openclaw/index.d.ts",
"import": "./dist/adapters/openclaw/index.js"
},
"./adapters/http": {
"types": "./dist/adapters/http/index.d.ts",
"import": "./dist/adapters/http/index.js"
},
"./schemas": {
"types": "./dist/core/schemas.d.ts",
"import": "./dist/core/schemas.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rimraf dist",
"dev": "tsx src/cli/index.ts",
"test": "vitest run",
"lint": "tsc --noEmit",
"pack:dry": "npm pack --dry-run",
"release:check": "npm run lint && npm run test && npm run build && npm run pack:dry"
},
"keywords": [
"agent",
"routing",
"context",
"policy",
"openclaw"
],
"author": "Darksol",
"license": "MIT",
"homepage": "https://github.com/darks0l/context-kernel#readme",
"bugs": {
"url": "https://github.com/darks0l/context-kernel/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/darks0l/context-kernel.git"
},
"dependencies": {
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.13.8",
"rimraf": "^6.0.1",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
}
}