-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
162 lines (162 loc) Β· 4.08 KB
/
Copy pathpackage.json
File metadata and controls
162 lines (162 loc) Β· 4.08 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"name": "@fuzdev/fuz_app",
"version": "0.104.0",
"description": "fullstack app library",
"glyph": "π",
"logo": "logo.svg",
"logo_alt": "a friendly teal spider facing you",
"license": "MIT",
"homepage": "https://app.fuz.dev/",
"repository": "https://github.com/fuzdev/fuz_app",
"scripts": {
"start": "gro dev",
"dev": "gro dev",
"build": "gro build",
"check": "gro check",
"test": "gro test",
"test:cross:ts": "FUZ_TEST_CROSS_BACKEND=1 vitest run --project cross_backend_ts_node --project cross_backend_ts_deno --project cross_backend_ts_bun",
"test:cross:rust-spine-stub": "FUZ_TEST_CROSS_BACKEND=1 vitest run --project cross_backend_rust_spine_stub",
"test:cross:parity": "FUZ_TEST_CROSS_BACKEND=1 vitest run --project cross_backend_parity",
"test:cross:security": "FUZ_TEST_CROSS_BACKEND=1 vitest run --project cross_backend_security",
"benchmark:cross-impl": "gro run src/benchmarks/cross_impl.bench.ts",
"preview": "vite preview",
"deploy": "gro deploy"
},
"type": "module",
"imports": {
"#lib/*": "./src/lib/*",
"#routes/*": "./src/routes/*"
},
"engines": {
"node": ">=24.14"
},
"peerDependencies": {
"@electric-sql/pglite": ">=0.4",
"@fuzdev/blake3_wasm": ">=0.1.0",
"@fuzdev/fuz_util": ">=0.65.2",
"@hono/node-server": ">=1",
"@hono/node-ws": ">=1",
"@node-rs/argon2": ">=2",
"@sveltejs/kit": "^2",
"esm-env": "^1",
"hono": ">=4",
"pg": ">=8",
"svelte": "^5",
"ws": ">=8",
"zod": "^4"
},
"peerDependenciesMeta": {
"@electric-sql/pglite": {
"optional": true
},
"@hono/node-server": {
"optional": true
},
"@hono/node-ws": {
"optional": true
},
"@node-rs/argon2": {
"optional": true
},
"esm-env": {
"optional": true
},
"hono": {
"optional": true
},
"pg": {
"optional": true
},
"ws": {
"optional": true
}
},
"devDependencies": {
"@electric-sql/pglite": "^0.4.5",
"@fuzdev/blake3_wasm": "^0.1.1",
"@fuzdev/fuz_code": "^0.47.0",
"@fuzdev/fuz_css": "^0.63.2",
"@fuzdev/fuz_ui": "^0.206.6",
"@fuzdev/fuz_util": "^0.65.2",
"@fuzdev/gro": "0.205.1",
"@fuzdev/mdz": "^0.3.0",
"@hono/node-server": "^1.19.14",
"@hono/node-ws": "^1.3.1",
"@node-rs/argon2": "^2.0.2",
"@ryanatkn/eslint-config": "^0.12.2",
"@sveltejs/acorn-typescript": "^1.0.9",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.69.1",
"@sveltejs/package": "^2.5.7",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@types/estree": "^1.0.8",
"@types/pg": "^8.18.0",
"@types/ws": "^8.18.1",
"@webref/css": "^8.2.0",
"eslint": "^9.39.4",
"eslint-plugin-svelte": "^3.15.1",
"esm-env": "^1.2.2",
"hono": "^4.12.21",
"jsdom": "^28.1.0",
"magic-string": "^0.30.21",
"pg": "^8.20.0",
"prettier": "^3.9.6",
"prettier-plugin-svelte": "^4.1.1",
"svelte": "^5.56.4",
"svelte-check": "^4.7.1",
"svelte-docinfo": "^0.5.4",
"svelte2tsx": "^0.7.52",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"ws": "^8.20.1",
"zimmerframe": "^1.1.4",
"zod": "^4.3.6"
},
"prettier": {
"plugins": [
"prettier-plugin-svelte"
],
"useTabs": true,
"printWidth": 100,
"singleQuote": true,
"bracketSpacing": true,
"trailingComma": "none",
"overrides": [
{
"files": "package.json",
"options": {
"useTabs": false
}
}
]
},
"sideEffects": [
"**/*.css"
],
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json",
"./*.js": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
},
"./*.ts": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
},
"./*.svelte": {
"types": "./dist/*.svelte.d.ts",
"svelte": "./dist/*.svelte",
"default": "./dist/*.svelte"
},
"./*.json": {
"types": "./dist/*.json.d.ts",
"default": "./dist/*.json"
}
}
}