-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.53 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
{
"name": "@vladislavlad/opencode-openspec-plugin",
"version": "0.4.0",
"description": "OpenSpec TUI sidebar plugin for opencode – browse specs, review change proposals, and drive the OpenSpec flow from the terminal.",
"type": "module",
"license": "MIT",
"author": "Vladislav Kartashov",
"homepage": "https://github.com/vladislavlad/opencode-openspec-plugin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vladislavlad/opencode-openspec-plugin.git"
},
"bugs": {
"url": "https://github.com/vladislavlad/opencode-openspec-plugin/issues"
},
"keywords": [
"opencode",
"opencode-plugin",
"openspec",
"tui",
"sidebar",
"solid-js"
],
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./tui": "./dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "NODE_ENV=production bun run build.ts",
"typecheck": "tsc --noEmit",
"test": "bun test --preload @opentui/solid/preload",
"prepublishOnly": "bun run build"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.18.0",
"@opentui/solid": ">=0.1.0",
"solid-js": ">=1.9.0"
},
"devDependencies": {
"@babel/core": "7",
"@babel/preset-typescript": "7",
"@opencode-ai/plugin": "^1.18.0",
"@types/bun": "^1.3.14",
"@types/node": "^24.0.0",
"babel-preset-solid": "^1.9.12",
"solid-js": "^1.9.0",
"typescript": "^5.8.0",
"yaml": "^2.9.0"
}
}