-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1009 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1009 Bytes
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
{
"name": "opencode-web",
"version": "0.2.0",
"description": "Launch OpenCode as a background server inside Acode and embed its web UI.",
"main": "dist/main.js",
"repository": "https://github.com/Victozee26/acode-opencode.git",
"author": "Acode Foundation",
"license": "MIT",
"dependencies": {
"acode-plugin-types": "^1.12.6",
"html-tag-js": "^2.4.16"
},
"devDependencies": {
"esbuild": "^0.28.1",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"jszip": "^3.10.1",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"scripts": {
"dev": "node esbuild.config.mjs --serve",
"build": "tsc --noEmit && node esbuild.config.mjs",
"sync-version": "node scripts/sync-version.js",
"sync-name": "node scripts/sync-name.js",
"test": "vitest run",
"prepare": "husky"
},
"browserslist": [
"> 0.25%, not dead"
],
"resolutions": {
"terser": ">=5.14.2 ",
"glob-parent": ">=5.1.2"
},
"allowScripts": {
"esbuild@0.28.1": true
}
}