-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.18 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "classifast",
"version": "0.1.0",
"license": "MIT",
"type": "module",
"private": true,
"scripts": {
"build": "bun run build:ts && bun run build:css",
"build:ts": "bun build app/assets/ts/common.ts app/assets/ts/paywall.ts app/assets/ts/classifier.ts app/assets/ts/storefront.ts --outdir app/static/js --target=browser --format=iife",
"build:css": "bun tailwindcss -i ./app/assets/css/input.css -o ./app/static/css/styles.css",
"test": "vitest run",
"test:watch": "vitest",
"watch": "bun build app/assets/ts/common.ts app/assets/ts/paywall.ts app/assets/ts/classifier.ts app/assets/ts/storefront.ts --outdir app/static/js --target=browser --format=iife --watch",
"watch:css": "bun tailwindcss -i ./app/assets/css/input.css -o ./app/static/css/styles.css --watch",
"typecheck": "tsc --noEmit",
"dev": "bun run watch & bun run watch:css & uvicorn app.main:app --reload --port 8001"
},
"devDependencies": {
"@tailwindcss/cli": "^4.2.2",
"@tsconfig/strictest": "^2.0.8",
"@types/bun": "^1.3.11",
"@types/web": "^0.0.345",
"jsdom": "^29.0.2",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
}
}