tailwindcss/oxide/package.json
2024-03-05 14:29:15 +01:00

21 lines
642 B
JSON

{
"name": "tailwindcss-oxide",
"private": true,
"version": "0.1.0",
"workspaces": [
"node"
],
"scripts": {
"test": "cargo test",
"install:cargo": "cargo install cargo-watch cargo-fuzz",
"build": "cargo build --release",
"build:node": "npm --prefix ./crates/node run build",
"dev": "cargo watch --clear --quiet -x 'run --quiet'",
"dev:node": "cargo watch --clear --quiet --shell 'npm --prefix ./crates/node run build:debug'",
"fuzz": "cd ./crates/core; cargo fuzz run parsing; cd -",
"bench": "cargo bench",
"postbench": "open ./target/criterion/report/index.html"
},
"license": "MIT"
}