-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 2.98 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 2.98 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
{
"name": "@fuzdev/zzz",
"version": "0.0.1",
"description": "local-first forge for power users and devs",
"motto": "nice web things for the tired",
"glyph": "💤",
"logo": "logo.svg",
"logo_alt": "three sleepy z's",
"license": "MIT",
"homepage": "https://www.zzz.software/",
"repository": "https://github.com/fuzdev/zzz",
"author": {
"name": "Ryan Atkinson",
"email": "mail@ryanatkn.com",
"url": "https://www.ryanatkn.com/"
},
"bugs": "https://github.com/fuzdev/zzz/issues",
"funding": "https://www.ryanatkn.com/funding",
"scripts": {
"start": "gro dev",
"dev": "gro dev",
"build": "gro build",
"check": "gro check",
"typecheck": "gro typecheck",
"test": "gro test",
"preview": "vite preview",
"deploy": "gro deploy",
"serve": "gro build && npm run preview & node dist_server/server/server.js"
},
"type": "module",
"engines": {
"node": ">=22.15"
},
"peerDependencies": {
"@sveltejs/kit": "^2",
"svelte": "^5"
},
"devDependencies": {
"@changesets/changelog-git": "^0.2.1",
"@fuzdev/fuz_code": "^0.45.1",
"@fuzdev/fuz_css": "^0.57.0",
"@fuzdev/fuz_ui": "^0.191.1",
"@fuzdev/fuz_util": "^0.55.0",
"@jridgewell/trace-mapping": "^0.3.31",
"@ryanatkn/eslint-config": "^0.9.0",
"@sveltejs/adapter-node": "^5.4.0",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.55.0",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@types/estree": "^1.0.8",
"@types/node": "^24.10.1",
"@webref/css": "^8.2.0",
"eslint": "^9.39.1",
"eslint-plugin-svelte": "^3.13.1",
"jsdom": "^27.2.0",
"magic-string": "^0.30.21",
"ollama": "^0.6.3",
"prettier": "^3.7.4",
"prettier-plugin-svelte": "^3.4.1",
"svelte": "^5.54.0",
"svelte-check": "^4.4.5",
"svelte2tsx": "^0.7.52",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
"vitest": "^4.0.15",
"zimmerframe": "^1.1.4"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@fuzdev/gro": "^0.197.1",
"@google/generative-ai": "^0.24.1",
"@hono/node-server": "^1.19.6",
"@hono/node-ws": "^1.2.0",
"date-fns": "^4.1.0",
"esm-env": "^1.2.2",
"hono": "^4.10.7",
"openai": "^6.10.0",
"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"
],
"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"
}
}
}