-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
69 lines (69 loc) · 2.39 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "lil-gui",
"version": "0.20.0",
"author": {
"name": "George Michael Brower"
},
"description": "Makes a floating panel for controllers on the web.",
"homepage": "https://lil-gui.georgealways.com",
"type": "module",
"module": "dist/lil-gui.esm.js",
"main": "dist/lil-gui.umd.js",
"types": "dist/lil-gui.esm.d.ts",
"sideEffects": false,
"exports": {
"import": "./dist/lil-gui.esm.js",
"require": "./dist/lil-gui.umd.js"
},
"config": {
"style": "dist/lil-gui.css",
"styleMin": "dist/lil-gui.min.css"
},
"scripts": {
"build": "npm run icons && npm run sass && npm run postcss && npm run rollup",
"build:all": "npm run build && npm run api && npm run homepage",
"sass": "sass style/index.scss dist/lil-gui.css --no-charset --no-source-map",
"postcss": "postcss dist/lil-gui.css -u postcss-combine-media-query -u cssnano --no-map -o dist/lil-gui.min.css",
"rollup": "rollup -c",
"lint": "eslint . --max-warnings 0",
"icons": "node scripts/icons.js",
"test": "node tests/utils/runner.js",
"api": "node scripts/api.js --write",
"types": "tsc dist/lil-gui.esm.js --declaration --allowJs --emitDeclarationOnly --outDir dist && node scripts/types.js",
"types:test": "tsc dist/lil-gui.esm.d.ts --noEmit",
"homepage": "node scripts/homepage.js",
"server": "browser-sync start -s -f 'dist' 'index.html' 'homepage' 'examples' --no-open --no-notify --no-ui --no-ghost-mode --no-inject-changes",
"clean": "rimraf -rf dist index.html API.md style/icons.scss",
"preversion": "npm run build && npm test",
"prepublishOnly": "npm run clean && npm run build && npm run types && npm run types:test && npm test",
"dev": "npm run build:all && node scripts/dev.js"
},
"files": [
"dist"
],
"license": "MIT",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"browser-sync": "^2.27.7",
"concurrently": "^6.3.0",
"cssnano": "^5.0.12",
"eslint": "^8.1.0",
"eslint-plugin-jsdoc": "^50.3.0",
"handlebars": "^4.3.1",
"highlight.js": "^10.7.3",
"jsdoc-api": "^9.3.1",
"markdown-it": "^12.3.2",
"onchange": "^6.0.0",
"postcss": "^8.4.47",
"postcss-cli": "^9.0.2",
"postcss-combine-media-query": "^1.0.1",
"rimraf": "^3.0.2",
"rollup": "^4.22.5",
"sass": "^1.22.10",
"typescript": "~5.1.3",
"webfont": "^11.2.26"
},
"eslintIgnore": [
"dist"
]
}