-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.54 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "seanbehan-ca",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "node tools/img/measure.mjs && node tools/og/build-cards.mjs && NODE_ENV=development vite dev",
"build": "node tools/img/measure.mjs && node tools/og/build-cards.mjs && vite build && node tools/csp/hash-jsonld.mjs",
"build:codebam": "node tools/img/measure.mjs && PUBLIC_SITE=codebam node tools/og/build-cards.mjs && PUBLIC_SITE=codebam vite build && node tools/csp/hash-jsonld.mjs",
"preview": "npm run build && wrangler pages dev",
"prepare": "svelte-kit sync || echo ''; git config core.hooksPath .githooks || true",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"deploy": "npm run build && wrangler pages deploy && npm run purge",
"purge": "bash tools/cloudflare/purge.sh",
"cf-typegen": "wrangler types && mv worker-configuration.d.ts src/"
},
"devDependencies": {
"@cloudflare/workers-types": "^5.20260814.1",
"@eslint/compat": "^2.1.0",
"@eslint/js": "^10.0.1",
"@fontsource-variable/inter": "^5.3.0",
"@fontsource-variable/newsreader": "^5.3.0",
"@fontsource/inter": "^5.3.0",
"@fontsource/newsreader": "^5.3.0",
"@sveltejs/adapter-cloudflare": "^7.2.9",
"@sveltejs/kit": "^2.70.1",
"@sveltejs/vite-plugin-svelte": "^7.2.0",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/postcss": "^4.3.3",
"@tailwindcss/typography": "^0.5.20",
"@tailwindcss/vite": "^4.3.3",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/svelte": "^5.4.2",
"@types/node": "^26.2.0",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.22.0",
"fuse.js": "^7.5.0",
"globals": "^17.8.0",
"jsdom": "^30.0.0",
"lint-staged": "^17.3.0",
"mdsvex": "^0.12.8",
"prettier": "^3.9.6",
"prettier-plugin-svelte": "^4.1.1",
"prettier-plugin-tailwindcss": "^0.8.1",
"satori": "^0.29.0",
"sharp": "^0.35.3",
"shiki": "^4.4.3",
"svelte": "^5.56.8",
"svelte-check": "^4.7.6",
"tailwindcss": "^4.3.3",
"typescript-eslint": "^8.67.0",
"vite": "^8.2.1",
"vitest": "^4.1.10",
"wrangler": "^4.123.0"
},
"dependencies": {
"typescript": "^6.0.3"
},
"overrides": {
"cookie": "^0.7.2",
"sharp": "^0.35.3"
},
"allowScripts": {
"esbuild@0.28.1": true,
"sharp@0.35.3": true,
"workerd@1.20260722.1": true
}
}