-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.02 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
{
"name": "exizt.moglog",
"version": "3.2.20",
"description": "",
"author": "exizt",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/exizt/moglog.git"
},
"homepage": "https://exizt.github.io/moglog/",
"main": "dist/moglog.js",
"types": "dist/moglog.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run tsc && npm run webpack && npm run dist.css && npm run make.ghpages",
"build.dev": "npm run tsc & npm run dist.css &",
"tsc": "tsc ./src/moglog.ts --outDir ./dist --target es2016 --declaration --removeComments",
"webpack": "npx webpack --mode production",
"webpack.dev": "npx webpack --mode development",
"make.ghpages": "shx cp -r index.html dist assets docs/",
"dist.css": "shx cp ./src/css/moglog.css ./dist"
},
"devDependencies": {
"css-loader": "^6.7.1",
"shx": "^0.3.4",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.1",
"typescript": "^4.3.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}