-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.65 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
{
"name": "@forks.developing.today/octto",
"version": "0.3.1",
"description": "OpenCode plugin that turns rough ideas into designs through branch-based exploration",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"prepare": "lefthook install",
"build": "bun build src/index.ts --outdir dist --target bun --format esm && tsc --emitDeclarationOnly",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run clean && bun run check && bun run build",
"test": "bun test",
"test:watch": "bun test --watch",
"format": "biome format --write .",
"lint": "biome lint . && eslint .",
"lint:biome": "biome lint .",
"lint:eslint": "eslint .",
"check": "biome check . && eslint . && bun run typecheck && bun test"
},
"keywords": [
"opencode",
"plugin",
"octto",
"brainstorm",
"interactive",
"ui"
],
"author": "vtemian",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/developing-today-forks/octto.git"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@opencode-ai/plugin": "1.0.223",
"valibot": "^1.2.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@eslint/js": "^10.0.1",
"bun-types": "latest",
"eslint": "^10.0.3",
"eslint-plugin-sonarjs": "^4.0.2",
"eslint-plugin-unicorn": "^63.0.0",
"lefthook": "^2.0.13",
"typescript": "^5.7.3",
"typescript-eslint": "^8.57.1"
}
}