-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 819 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "koval",
"version": "0.0.1",
"main": "index.html",
"scripts": {
"tw": "tailwindcss -i style/input.css -o site/style/output.css",
"tw:dev": "tailwindcss -i style/input.css -o site/style/output.css --watch",
"tw:release": "tailwindcss -i style/input.css -o site/style/output.css --minify",
"dev": "RUSTFLAGS=--cfg=web_sys_unstable_apis trunk serve --open --address 0.0.0.0",
"clean": "rm ./site/style/output.css && rm -rf site/dist",
"build": "RUSTFLAGS=--cfg=web_sys_unstable_apis trunk build --release",
"install_trunk": "chmod 744 ./bin/install_trunk.sh && TRUNK_VERSION=0.17.5 ./bin/install_trunk.sh"
},
"repository": "git@github.com:GlooriousWalrus/koval.git",
"author": "GlooriousWalrus",
"license": "MIT",
"dependencies": {
"tailwindcss": "^3.3.3"
}
}