aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 3f8d026200ac1e8b18a838af923c2082c975b10f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  "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": "bun run build-sass"
  },
  "devDependencies": {
    "@types/bun": "latest"
  },
  "peerDependencies": {
    "typescript": "^5.0.0"
  },
  "dependencies": {
    "reset-css": "^5.0.2",
    "sass": "^1.80.6"
  }
}