-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 662 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 662 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
{
"name": "acode-cpp-snippets",
"version": "1.0.1",
"description": "Acode plugin for C++ snippets",
"main": "dist/main.js",
"repository": "",
"author": "Devilhunter",
"license": "MIT",
"dependencies": {
"@types/ace": "^0.0.51",
"global": "^4.4.0",
"html-tag-js": "^1.1.22"
},
"devDependencies": {
"esbuild": "^0.19.5",
"jszip": "^3.10.1",
"typescript": "^5.1.6"
},
"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"
}
}