-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 969 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 969 Bytes
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
29
30
31
32
33
34
35
36
37
{
"name": "card-creator",
"version": "1.0.0",
"description": "Standalone deferral card creator",
"type": "module",
"scripts": {
"dev": "bun --hot server/index.ts",
"start": "NODE_ENV=production bun server/index.ts",
"build": "NODE_ENV=production bun scripts/build.ts",
"lint": "oxlint src/ server/",
"typecheck": "tsc -p tsconfig.json --noEmit",
"check": "svelte-check --tsconfig ./tsconfig.json",
"test": "bun test",
"doctor": "svelte-doctor check",
"doctor:fix": "svelte-doctor fix"
},
"license": "MIT",
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"dequal": "^2.0.3",
"svelte": "5.56.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.4",
"@types/bun": "latest",
"oxlint": "^1.72.0",
"postcss": "^8.5.12",
"svelte-check": "^4.7.1",
"tailwindcss": "^4.2.4",
"typescript": "^5"
},
"peerDependencies": {
"typescript": "^5"
}
}