-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 790 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 790 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
{
"name": "acode-plugin",
"version": "1.0.0",
"description": "Template for Acode plugin(Typescript)",
"main": "dist/main.js",
"repository": "https://github.com/Acode-Foundation/AcodeTSTemplate.git",
"author": "Acode Foundation",
"license": "MIT",
"dependencies": {
"@acode-app/types": "^1.11.2",
"harper.js": "^0.65.0",
"html-tag-js": "^1.8.2",
"typo-js": "^1.3.1"
},
"devDependencies": {
"@types/typo-js": "^1.2.2",
"esbuild": "^0.24.2",
"jszip": "^3.10.1",
"typescript": "^5.7.2"
},
"scripts": {
"dev": "node esbuild.config.mjs --serve",
"build": "tsc --noEmit && node esbuild.config.mjs"
},
"browserslist": [
"> 0.25%, not dead"
],
"resolutions": {
"terser": ">=5.14.2 ",
"glob-parent": ">=5.1.2"
}
}