mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
21 lines
642 B
JSON
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"
|
|
}
|