-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.96 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.96 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
79
80
81
82
83
{
"name": "opencode-owl",
"version": "0.7.0",
"description": "Project intelligence, token tracking, and learning memory middleware for OpenCode",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./server": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"openowl": "dist/cli/bin.js"
},
"files": [
"dist/",
"src/templates/",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc && npm run build:dashboard",
"build:cli": "tsc",
"build:dashboard": "cd src/dashboard/app && npx vite build",
"prepack": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && npm run build",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"engines": {
"node": ">=20.0.0",
"opencode": ">=1.4.1"
},
"dependencies": {
"commander": "^12.0.0"
},
"optionalDependencies": {
"chokidar": "^5.0.0",
"express": "^5.2.1",
"node-cron": "^4.2.1",
"ws": "^8.20.0"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.4.3",
"@tailwindcss/vite": "^4.2.2",
"@types/express": "^5.0.6",
"@types/node": "^20.19.39",
"@types/node-cron": "^3.0.11",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.0.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"recharts": "^3.8.1",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"vite": "^8.0.8",
"vitest": "^4.1.4"
},
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/jcmrs/openowl.git"
},
"keywords": [
"opencode",
"ai",
"middleware",
"token-tracking",
"learning-memory",
"project-intelligence"
]
}