-
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.74 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.74 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": "slimclaw",
"version": "0.5.0",
"repository": {
"type": "git",
"url": "https://github.com/evansantos/slimclaw.git"
},
"homepage": "https://github.com/evansantos/slimclaw#readme",
"bugs": {
"url": "https://github.com/evansantos/slimclaw/issues"
},
"description": "Inference optimization middleware — windowing, routing, caching",
"type": "module",
"main": "dist/index.js",
"openclaw": {
"extensions": [
"./dist/index.js"
]
},
"scripts": {
"build": "tsc && npm run copy-assets",
"copy-assets": "cp -r src/dashboard/views dist/dashboard/ && cp -r src/dashboard/public dist/dashboard/",
"dev": "tsc --watch",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"prepare": "husky"
},
"dependencies": {
"@blockrun/clawrouter": "^0.9.36",
"@hono/node-server": "^1.19.9",
"hono": "^4.11.10",
"openclaw": "*",
"rimraf": "^6.1.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"rollup": "^4.59.0",
"typescript": "^5.0.0",
"vitest": "^4.0.18"
},
"overrides": {
"tar": "7.5.9",
"minimatch": "10.2.1"
},
"keywords": [
"openclaw",
"plugin",
"optimization",
"windowing",
"inference"
],
"author": "SlimClaw Team",
"license": "MIT"
}