-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 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
{
"name": "@hyper-ui/core",
"description": "A lightweight front-end UI lib.",
"version": "0.18.0",
"main": "dist/hyper-ui.core.umd.min.js",
"module": "dist/hyper-ui.core.min.js",
"types": "index.d.ts",
"scripts": {
"prebuild": "rm -rf dist typings raw & exit 0",
"build": "tsc && rollup -c",
"postbuild": "terser dist/hyper-ui.core.js --config-file terser.json --module -o dist/hyper-ui.core.min.js && terser dist/hyper-ui.core.umd.js --config-file terser.json -o dist/hyper-ui.core.umd.min.js && node stat",
"test": "cd test && tsc && echo Please open test/test.html to test it."
},
"license": "MIT",
"author": "3h",
"repository": "hyper-ui/core",
"bugs": {
"url": "https://github.com/hyper-ui/core/issues"
},
"homepage": "https://github.com/hyper-ui/core/wiki",
"keywords": [
"hyper-ui",
"core",
"hui",
"front-end",
"virtual-dom",
"vdom",
"lightweight",
"UI",
"jsx",
"typescript",
"tsx",
"3h"
],
"files": [
"dist",
"typings",
"index.d.ts"
],
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"terser": "^3.16.1",
"typescript": "^3.3.3"
}
}