-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.26 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
{
"name": "@devcxl/opencode-spec",
"version": "0.2.0",
"description": "OpenSpec workflow plugin for OpenCode",
"repository": {
"type": "git",
"url": "git+https://github.com/devcxl/opencode-spec.git"
},
"homepage": "https://github.com/devcxl/opencode-spec",
"bugs": {
"url": "https://github.com/devcxl/opencode-spec/issues"
},
"keywords": [
"opencode",
"openspec",
"opencode-plugin",
"spec-driven-development",
"ai-coding-agent"
],
"type": "module",
"main": "./dist/index.js",
"oc-plugin": [
"server"
],
"exports": {
".": {
"import": "./dist/index.js"
},
"./server": {
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"assets",
"README.md"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"prepublishOnly": "npm test && npm run typecheck && npm run build",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run"
},
"dependencies": {
"@opencode-ai/plugin": "^1.3.7",
"yaml": "^2.8.3"
},
"devDependencies": {
"@types/node": "^24.6.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}