-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "wasm-module-webpack-plugin",
"description": "Webpack loader that transforms wasm and glue js source files into javascript bundles.",
"author": "zhi.zhou",
"license": "MIT",
"version": "3.0.0",
"keywords": [
"wasm",
"webpack",
"plugin",
"webassembly",
"babel"
],
"homepage": "https://github.com/zhouzhi3859/wasm-module-webpack-plugin",
"repository": {
"type": "git",
"url": "https://github.com/zhouzhi3859/wasm-module-webpack-plugin.git"
},
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --config ./example/webpack.config.js --progress --hot",
"test": "echo 1"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.18.5",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/runtime": "^7.18.3",
"@ne_fe/gis": "^1.2.2",
"babel-loader": "^8.2.5",
"babel-plugin-import": "^1.13.5",
"eslint": "^8.17.0",
"eslint-config-egg": "^12.0.0",
"html-webpack-plugin": "^5.5.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2"
},
"peerDependencies": {
"webpack": ">=5.0.0",
"@babel/core": ">=7.0.0",
"babel-loader": ">=8.0.0"
},
"engines": {
"node": ">= 12.0"
}
}