-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "super-x",
"description": "A reactive UI lib.",
"version": "1.0.0",
"main": "dist/super-x.umd.min.js",
"module": "dist/super-x.min.js",
"types": "index.d.ts",
"scripts": {
"prebuild": "tsc",
"build": "rollup -c",
"postbuild": "terser dist/super-x.js --config-file terser.json --module -o dist/super-x.min.js && terser dist/super-x.umd.js --config-file terser.json -o dist/super-x.umd.min.js && node stat",
"docs": "dts2md \"**\" \"!index.d.ts\" -i typings -o docs -l -I API.md"
},
"license": "MIT",
"author": "3h",
"repository": "huang2002/super-x",
"bugs": {
"url": "https://github.com/huang2002/super-x/issues"
},
"homepage": "https://github.com/huang2002/super-x#readme",
"keywords": [
"super-x",
"x",
"lightweight",
"front-end",
"reactive",
"ui",
"lib",
"3h"
],
"files": [
"dist",
"typings",
"index.d.ts"
],
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"dts2md": "^0.4.2",
"hpolyfill": "^0.22.0",
"rollup": "^2.26.3",
"rollup-plugin-babel": "^4.4.0",
"terser": "^5.1.0",
"typescript": "^3.9.7"
}
}