-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.27 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.27 KB
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
{
"name": "bibi-zip-loader",
"version": "0.9.0",
"description": "Bibi Zip Loader",
"main": "dist/lszl.js",
"types": "dist/lszl.d.ts",
"scripts": {
"start": "webpack-dev-server --open",
"clean": "rm -rf dist lib && cd wasm && rm -rf pkg && cargo clean",
"build": "tsc && webpack --config webpack.config.lszl.js --mode=${NODE_ENV:-development}",
"prepack": "$npm_execpath run build"
},
"author": "Lunascape",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"abortcontroller-polyfill": "^1.3.0",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.0.3",
"core-js": "^3.1.3",
"fast-text-encoding": "^1.0.0",
"mime": "^2.4.4",
"regenerator-runtime": "^0.13.2",
"ts-loader": "^6.0.2",
"typescript": "^3.5.2",
"uglify-es": "^3.3.10",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.6.0",
"webpack-synchronizable-shell-plugin": "0.0.7",
"whatwg-fetch": "^3.0.0",
"worker-loader": "^2.0.0"
},
"files": [
"package.json",
"README.md",
"CHANGELOG.md",
"dist/lszl.d.ts",
"dist/lszl.js",
"dist/lszlw.js"
]
}