aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 8f1a6332753035b748743ae3ba05ece23e4ca5de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "name": "now",
  "module": "index.ts",
  "type": "module",
  "scripts": {
    "build-sass": "sass --no-source-map --style=compressed scss/main.scss dist/styles.css",
    "watch-sass": "sass --watch scss/main.scss dist/styles.css",
    "build-js": "bun build ./index.ts --outdir ./dist --minify",
    "build": "bun run build-sass && bun run build-js"
  },
  "devDependencies": {
    "@types/bun": "latest"
  },
  "peerDependencies": {
    "typescript": "^5.0.0"
  },
  "dependencies": {
    "reset-css": "^5.0.2",
    "sass": "^1.80.6"
  }
}