-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 864 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 864 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
{
"name": "acode-plugin",
"version": "0.1.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",
"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",
"test": "vitest run"
},
"browserslist": [
"> 0.25%, not dead"
],
"resolutions": {
"terser": ">=5.14.2 ",
"glob-parent": ">=5.1.2"
},
"allowScripts": {
"esbuild@0.28.1": true
}
}