-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
35 lines (35 loc) · 989 Bytes
/
package.json
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-github",
"version": "1.3.1",
"description": "Github plugin for acode editor",
"main": "dist/main.js",
"repository": "https://github.com/deadlyjack/acode-plugin-github.git",
"author": "Ajit <me@ajitkumar.dev>",
"license": "MIT",
"dependencies": {
"github-api": "^3.4.0",
"html-tag-js": "^1.1.37",
"mime-types": "^2.1.35"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.18.10",
"babel-loader": "^9.1.2",
"jszip": "^3.10.1",
"live-server": "^1.2.2",
"path-browserify": "^1.0.1",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1"
},
"scripts": {
"build": "webpack",
"build-release": "webpack --mode production",
"start-dev": "node .vscode/start-dev"
},
"browserslist": "cover 100%,not android < 5",
"resolutions": {
"terser": ">=5.16.6",
"glob-parent": ">=5.1.2"
}
}