-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.86 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
67
68
69
{
"name": "opencode-artifacts",
"version": "0.14.4",
"description": "Publish OpenCode session output as self-contained, interactive HTML artifact pages.",
"license": "MIT",
"type": "module",
"main": "./dist/plugin.js",
"types": "./dist/plugin.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/bitgorust/opencode-artifacts.git"
},
"homepage": "https://github.com/bitgorust/opencode-artifacts",
"bugs": "https://github.com/bitgorust/opencode-artifacts/issues",
"keywords": [
"opencode",
"opencode-plugin",
"artifacts",
"dashboard",
"claude-code"
],
"exports": {
".": "./dist/plugin.js",
"./render": "./dist/render.js",
"./publisher": "./dist/publisher.js"
},
"bin": {
"opencode-artifacts": "./dist/cli.js"
},
"files": [
"dist",
"skills",
"agents",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "node --test test/*.test.ts",
"check": "node scripts/check-repo.ts",
"check:links": "node scripts/check-links.ts",
"check:governance": "node scripts/governance-policy.ts",
"check:licenses": "node scripts/release-integrity.ts licenses package-lock.json docs/license-dispositions.json",
"study": "node scripts/journey-study.ts",
"spec": "node scripts/spec-workflow.ts",
"prepare": "git config core.hooksPath .githooks || true",
"prepublishOnly": "npm run build"
},
"dependencies": {
"echarts": "^6.1.0",
"markdown-it": "^14.1.0",
"mermaid": "^11.16.1",
"vega": "^6.4.0",
"vega-embed": "^7.1.0",
"vega-lite": "^6.4.3"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.0.0"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.0.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^24.0.0",
"typescript": "^5.8.0"
},
"engines": {
"node": ">=24"
}
}