-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
50 lines (50 loc) · 1.68 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
{
"name": "octoprint-wled",
"version": "1.0.0",
"description": "Connect OctoPrint to WLED",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "concurrently \"npm run esbuild-dev\" \"npm run css-dev\"",
"release": "npm run esbuild && npm run css-build",
"css-dev": "sass --watch octoprint_wled/static/src/wled.scss octoprint_wled/static/dist/wled.css",
"css-build": "sass --style=compressed --no-source-map octoprint_wled/static/src/wled.scss octoprint_wled/static/dist/wled.css",
"esbuild": "esbuild ./octoprint_wled/static/src/wled.js --bundle --minify --sourcemap --target=\"chrome92,edge96,firefox94,ios12.2,safari13.1\" --outfile=./octoprint_wled/static/dist/wled.js",
"esbuild-dev": "esbuild ./octoprint_wled/static/src/wled.js --bundle --watch --target=\"chrome96,firefox95,safari15.2\" --outfile=./octoprint_wled/static/dist/wled.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cp2004/OctoPrint-WLED.git"
},
"keywords": [
"wled",
"octoprint"
],
"author": "Charlie Powell",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/cp2004/OctoPrint-WLED/issues"
},
"homepage": "https://github.com/cp2004/OctoPrint-WLED#readme",
"devDependencies": {
"eslint": "^8.9.0",
"eslint-config-standard": "^17.0.0-1",
"sass": "^1.49.9",
"concurrently": "^7.0.0",
"esbuild": "^0.14.23"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"nanoid": "^3.3.1"
}
}