forked from cytostack/openwolf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.92 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.92 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
{
"name": "openwolf",
"version": "1.0.4",
"description": "Token-conscious AI brain for Claude Code projects",
"type": "module",
"bin": {
"openwolf": "./dist/bin/openwolf.js"
},
"scripts": {
"prebuild": "node -e \"const fs=require('fs');if(fs.existsSync('dist'))fs.rmSync('dist',{recursive:true})\"",
"build": "tsc && pnpm build:hooks && pnpm build:dashboard",
"build:hooks": "tsc -p tsconfig.hooks.json",
"build:dashboard": "cd src/dashboard/app && npx vite build --outDir ../../../dist/dashboard",
"dev": "tsc --watch",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"chalk": "^5.3.0",
"chokidar": "^4.0.0",
"commander": "^12.0.0",
"express": "^5.0.0",
"node-cron": "^3.0.3",
"open": "^10.0.0",
"ws": "^8.18.0"
},
"optionalDependencies": {
"puppeteer-core": "^24.39.1"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"@types/node-cron": "^3.0.11",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/ws": "^8.5.12",
"@vitejs/plugin-react": "^4.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"recharts": "^2.15.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vitepress": "^1.6.4"
},
"engines": {
"node": ">=20.0.0"
},
"license": "AGPL-3.0-only",
"author": "Cytostack Pvt Ltd",
"repository": {
"type": "git",
"url": "https://github.com/cytostack/openwolf.git"
},
"homepage": "https://github.com/cytostack/openwolf",
"bugs": {
"url": "https://github.com/cytostack/openwolf/issues"
},
"keywords": [
"claude",
"ai",
"context",
"token",
"openwolf",
"claude-code",
"developer-tools"
],
"files": [
"dist/",
"src/templates/",
"LICENSE",
"README.md"
]
}