-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.35 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
{
"name": "opencode-plan-canvas",
"version": "0.3.1",
"description": "Static plan→canvas generator for opencode Prometheus work plans — runs on Node and Bun",
"type": "module",
"bin": {
"opencode-plan-canvas": "./dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./cli": "./dist/cli.js"
},
"files": ["dist", "README.md"],
"scripts": {
"test": "bun test",
"typecheck": "bunx tsc --noEmit",
"generate": "bun run src/cli.ts",
"clean": "rm -rf dist",
"build": "tsc -p tsconfig.build.json && node scripts/postbuild.mjs",
"prepublishOnly": "npm run clean && npm run build"
},
"engines": {
"node": ">=20.11"
},
"keywords": ["opencode", "plan", "canvas", "prometheus", "cli", "html", "live-reload"],
"repository": {
"type": "git",
"url": "git+https://github.com/zoispag/opencode-plan-canvas.git"
},
"homepage": "https://github.com/zoispag/opencode-plan-canvas#readme",
"bugs": {
"url": "https://github.com/zoispag/opencode-plan-canvas/issues"
},
"author": "zoispag",
"license": "MIT",
"publishConfig": {
"provenance": true,
"access": "public"
},
"devDependencies": {
"@types/node": "latest",
"typescript": "latest",
"bun-types": "latest"
}
}