package.json 642 B

123456789101112131415161718192021
  1. {
  2. "name": "tailwindcss-oxide",
  3. "private": true,
  4. "version": "0.1.0",
  5. "workspaces": [
  6. "node"
  7. ],
  8. "scripts": {
  9. "test": "cargo test",
  10. "install:cargo": "cargo install cargo-watch cargo-fuzz",
  11. "build": "cargo build --release",
  12. "build:node": "npm --prefix ./crates/node run build",
  13. "dev": "cargo watch --clear --quiet -x 'run --quiet'",
  14. "dev:node": "cargo watch --clear --quiet --shell 'npm --prefix ./crates/node run build:debug'",
  15. "fuzz": "cd ./crates/core; cargo fuzz run parsing; cd -",
  16. "bench": "cargo bench",
  17. "postbench": "open ./target/criterion/report/index.html"
  18. },
  19. "license": "MIT"
  20. }