-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.39 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.39 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
{
"name": "nostr-how",
"version": "0.2.0",
"private": true,
"license": "MIT",
"engines": {
"node": "24.x"
},
"packageManager": "bun@1.3.9",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "node ./scripts/check-locales.mjs && svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"check:locales": "node ./scripts/check-locales.mjs",
"lint-check": "biome lint",
"lint-write": "biome lint --write",
"format-check": "biome format",
"format-write": "biome format --write"
},
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@sveltejs/kit": "^2.55.0",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.2",
"mdsvex": "^0.12.7",
"svelte": "^5.54.1",
"svelte-check": "^4.4.5",
"tailwindcss": "^4.2.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vite": "^8.0.1"
},
"type": "module",
"dependencies": {
"@sveltejs/adapter-vercel": "^6.3.3",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"rehype-external-links": "^3.0.0",
"svelte-i18n": "^4.0.1",
"unist-util-visit": "^5.1.0"
}
}