-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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": "uil",
"version": "4.4.0",
"description": "JavaScript gui library",
"type": "module",
"main": "build/uil.js",
"jsnext:main": "build/uil.module.js",
"module": "build/uil.module.js",
"repository": {
"type": "git",
"url": "https://github.com/lo-th/uil"
},
"files": [
"package.json",
"LICENSE",
"README.md",
"build/uil.js",
"build/uil.min.js",
"build/uil.module.js"
],
"directories": {
"doc": "docs",
"example": "examples"
},
"scripts": {
"build": "rollup -c utils/rollup.config.js",
"dev": "concurrently --names \"ROLLUP,HTTP\" -c \"bgBlue.bold,bgGreen.bold\" \"rollup -c utils/rollup.config.js -w -m inline\" \"servez -p 8111 --index\"",
"start": "concurrently --names \"ROLLUP,HTTP\" -c \"bgBlue.bold,bgGreen.bold\" \"rollup -c utils/rollup.config.js -w -m inline\" \"http-server -c-1 -p 8111 -o index.html\""
},
"keywords": [
"uil",
"uil.js",
"ui"
],
"author": "lo-th",
"license": "MIT",
"bugs": {
"url": "https://github.com/lo-th/uil/issues"
},
"homepage": "http://lo-th.github.io/uil/",
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.0",
"rollup": "^4.6.0",
"concurrently": "^9.0.0",
"servez": "^2.2.4"
}
}