-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.31 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.31 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
{
"name": "micode",
"version": "0.10.0",
"description": "OpenCode plugin with Brainstorm-Research-Plan-Implement workflow",
"module": "dist/index.js",
"main": "dist/index.js",
"types": "src/index.ts",
"type": "module",
"files": [
"src",
"dist",
"INSTALL_CLAUDE.md"
],
"scripts": {
"prepare": "lefthook install",
"build": "bun build src/index.ts --outdir dist --target bun --external bun-pty",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run typecheck",
"test": "bun test",
"test:watch": "bun test --watch",
"format": "biome format --write .",
"lint": "biome lint .",
"check": "biome check ."
},
"keywords": [
"opencode",
"plugin",
"research",
"plan",
"implement"
],
"author": "vtemian",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vtemian/micode.git"
},
"homepage": "https://github.com/vtemian/micode#readme",
"bugs": {
"url": "https://github.com/vtemian/micode/issues"
},
"dependencies": {
"@opencode-ai/plugin": "1.1.23",
"bun-pty": "^0.4.5",
"jsonc-parser": "^3.3.1",
"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"
}
}