-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.89 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.89 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
77
78
{
"name": "fuz.dev",
"version": "0.0.1",
"description": "website for the Fuz, a zippy stack for autonomy",
"tagline": "friendly user zystem",
"glyph": "🦋",
"logo": "logo.svg",
"logo_alt": "a friendly pixelated spider facing you",
"homepage": "https://www.fuz.dev/",
"repository": "https://github.com/fuzdev/fuz.dev",
"scripts": {
"start": "gro dev",
"dev": "gro dev",
"build": "gro build",
"check": "gro check",
"test": "gro test",
"preview": "vite preview",
"deploy": "gro deploy"
},
"type": "module",
"engines": {
"node": ">=22.15"
},
"devDependencies": {
"@fuzdev/fuz_code": "^0.45.1",
"@fuzdev/fuz_css": "^0.58.0",
"@fuzdev/fuz_ui": "^0.191.3",
"@fuzdev/fuz_util": "^0.55.0",
"@fuzdev/gro": "^0.197.2",
"@jridgewell/trace-mapping": "^0.3.31",
"@ryanatkn/eslint-config": "^0.10.1",
"@sveltejs/acorn-typescript": "^1.0.9",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.55.0",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@types/estree": "^1.0.8",
"@webref/css": "^8.2.0",
"eslint": "^9.39.1",
"eslint-plugin-svelte": "^3.13.1",
"esm-env": "^1.2.2",
"magic-string": "^0.30.21",
"prettier": "^3.7.4",
"prettier-plugin-svelte": "^3.5.1",
"svelte": "^5.55.0",
"svelte-check": "^4.4.5",
"svelte2tsx": "^0.7.52",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
"vite": "^7.3.1",
"vitest": "^4.0.15",
"zimmerframe": "^1.1.4",
"zod": "^4.3.6"
},
"prettier": {
"plugins": [
"prettier-plugin-svelte"
],
"useTabs": true,
"printWidth": 100,
"singleQuote": true,
"bracketSpacing": false,
"overrides": [
{
"files": "package.json",
"options": {
"useTabs": false
}
}
]
},
"sideEffects": [
"**/*.css"
],
"files": [
"dist"
]
}