-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.99 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.99 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
{
"name": "@alan512/experienceengine",
"version": "0.1.3",
"type": "module",
"description": "Experience governance for coding agents: learn from real task outcomes, inject reusable hints, and retire low-value guidance.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Alan-512/ExperienceEngine.git"
},
"openclaw": {
"extensions": [
"./dist/plugin/openclaw-plugin.js"
],
"compat": {
"pluginApi": ">=2026.4.1",
"minGatewayVersion": "2026.4.1"
},
"build": {
"openclawVersion": "2026.4.1",
"pluginSdkVersion": "2026.4.1"
}
},
"engines": {
"node": ">=20.0.0"
},
"bin": {
"ee": "dist/cli/index.js"
},
"files": [
"dist",
".claude-plugin",
".mcp.json",
"hooks",
"plugins/claude-code-experienceengine",
"README.md",
"docs/user-guide.md",
"docs/releases",
"openclaw.plugin.json",
"scripts/claude-plugin",
".env.example"
],
"scripts": {
"build": "node scripts/build/clean-dist.mjs && tsc -p tsconfig.build.json && node scripts/build/copy-sqlite-schema.mjs",
"dev": "tsx watch src/cli/index.ts",
"evaluate:openclaw-baseline": "tsx src/cli/index.ts evaluate openclaw-baseline",
"evaluate:openclaw-scenarios": "tsx src/cli/index.ts evaluate openclaw-scenarios --pack high-confidence",
"maintenance:merge-warning-variants": "tsx scripts/maintenance/merge-warning-variants.ts",
"runtime:promote-payload": "tsx scripts/openclaw/promote-runtime-payload.ts",
"runtime:replay-fixture": "tsx scripts/openclaw/replay-runtime-fixture.ts",
"prepack": "pnpm build",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"check": "pnpm typecheck && pnpm test && pnpm build"
},
"dependencies": {
"@huggingface/transformers": "^3.8.1",
"@modelcontextprotocol/sdk": "^1.27.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^22.13.14",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vitest": "^3.0.9"
}
}