forked from vtemian/micode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.77 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.77 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
{
"name": "micode-beads",
"version": "1.4.0",
"description": "OpenCode plugin with Brainstorm-Plan-Implement workflow + Beads task tracking",
"module": "dist/index.js",
"main": "dist/index.js",
"types": "src/index.ts",
"type": "module",
"bin": {
"micode-beads": "dist/cli.js"
},
"files": [
"src",
"dist",
"INSTALL_CLAUDE.md"
],
"scripts": {
"prepare": "lefthook install",
"build": "bun build src/index.ts --outdir dist --target bun --external bun-pty && bun build src/cli/index.ts --target bun --outfile dist/cli.js",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run typecheck",
"test": "bun test",
"test:coverage": "bun test --coverage",
"test:e2e": "bun test tests/e2e/",
"test:watch": "bun test --watch",
"demo": "cd demo && bun run orchestrator.ts",
"format": "biome format --write .",
"lint": "biome lint .",
"check": "biome check .",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"version:prerelease": "npm version prerelease --preid=rc"
},
"keywords": [
"opencode",
"plugin",
"research",
"plan",
"implement",
"beads",
"task-tracking"
],
"author": "flipch",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/flipch/micode-beads.git"
},
"homepage": "https://github.com/flipch/micode-beads#readme",
"bugs": {
"url": "https://github.com/flipch/micode-beads/issues"
},
"dependencies": {
"@opencode-ai/plugin": "1.1.23",
"bun-pty": "^0.4.5",
"valibot": "^1.2.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"bun-types": "latest",
"lefthook": "^2.0.13",
"typescript": "^5.7.3"
}
}