-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.3 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.3 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
76
{
"name": "10xprivacy",
"private": true,
"version": "0.6.6",
"type": "module",
"author": "dottmp",
"scripts": {
"dev": "vite dev",
"dev:cf": "bun run build && wrangler pages dev .svelte-kit/cloudflare",
"build": "vite build",
"preview": "vite preview",
"preview:cf": "wrangler pages dev .svelte-kit/cloudflare",
"prepare": "svelte-kit sync || echo '' && husky",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"fix": "bun run format && bun run lint:fix",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"sync-data": "./scripts/sync-data.sh",
"release": "release-it"
},
"devDependencies": {
"@eslint/compat": "^2.0.2",
"@eslint/js": "^9.39.2",
"@release-it/conventional-changelog": "^10.0.6",
"@sveltejs/adapter-cloudflare": "^7.2.8",
"@sveltejs/kit": "^2.50.2",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.3.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24",
"@vitest/browser-playwright": "^4.1.1",
"@vitest/coverage-v8": "^4.1.1",
"daisyui": "^5.5.19",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-check-file": "^3.3.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-svelte": "^3.14.0",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jsdom": "^29.0.1",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.4.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"release-it": "^19.2.4",
"svelte": "^5.51.0",
"svelte-check": "^4.4.2",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vite": "^7.3.1",
"vitest": "^4.1.1",
"vitest-browser-svelte": "^2.1.0",
"wrangler": "^4.76.0"
},
"dependencies": {
"@lucide/svelte": "^1.7.0",
"fast-xml-parser": "^5.5.8",
"fuse.js": "^7.3.0",
"isomorphic-dompurify": "^3.4.0",
"js-yaml": "^4.1.1",
"marked": "^17.0.5",
"tailwind-merge": "^3.5.0",
"theme-change": "^2.5.0"
}
}