forked from EYHN/Azusa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.43 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
{
"name": "azusa",
"version": "1.0.2",
"description": "",
"main": "./lib/azusa.js",
"scripts": {
"clean": "rimraf lib && rimraf example",
"start": "webpack-dev-server --config webpack.config.js",
"build": "npm run build:m",
"update": "npm-check -y",
"build:m": "rimraf lib && webpack --config webpack.config.module.js",
"build:e": "rimraf example && webpack --config webpack.config.example.js && webpack-dev-server --config webpack.config.example.js"
},
"author": "EYHN",
"license": "GPL-2.0",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@types/node": "^14.0.11",
"babel-loader": "^8.1.0",
"declaration-bundler-webpack-plugin": "^1.0.3",
"file-loader": "^6.0.0",
"fork-ts-checker-webpack-plugin": "^4.1.6",
"html-webpack-plugin": "^4.3.0",
"npm-check": "^5.9.2",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"source-map-loader": "^1.0.0",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"uglify-js": "^3.9.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"core-js": "^3.6.5",
"three": "^0.117.1",
"tslib": "^2.0.0"
},
"types": "./lib/azusa.d.ts",
"typings": "./lib/azusa.d.ts",
"browserslist": [
"last 2 chrome version"
]
}