-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 912 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 912 Bytes
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
{
"name": "opencode-makiso",
"version": "0.2.0",
"description": "Local-first pub/sub event system for OpenCode agents (Make it so!)",
"type": "module",
"bin": {
"oc-events": "dist/cli.js"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "npx tsc",
"watch": "npx tsc --watch",
"clean": "rm -rf dist",
"lint": "echo \"no lint configured\"",
"prepack": "npm run clean && npm run build"
},
"keywords": [
"opencode",
"events",
"pubsub",
"sqlite",
"cli"
],
"author": "keybrdist",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/keybrdist/opencode-makiso.git"
},
"dependencies": {
"better-sqlite3": "^11.8.1",
"commander": "^12.1.0",
"ulid": "^2.3.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
}
}