-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 953 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
{
"name": "acode-plugin",
"version": "1.0.2",
"description": "Template for Acode plugin",
"main": "dist/main.js",
"repository": "https://github.com/deadlyjack/acode-plugin.git",
"author": "Ajit <me@ajitkumar.dev>",
"license": "MIT",
"dependencies": {
"html-tag-js": "^1.1.41",
"jsongraph-react": "^0.0.12",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.25.2",
"@babel/plugin-transform-runtime": "^7.23.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"babel-loader": "^9.1.3",
"jszip": "^3.10.1",
"live-server": "^1.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"scripts": {
"build": "webpack",
"build-release": "webpack --mode production",
"start-dev": "node .vscode/start-dev"
},
"browserslist": "cover 100%,not android < 5"
}