-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.86 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 2.86 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
{
"name": "@fuzdev/fuz_gitops",
"version": "0.68.0",
"description": "a tool for managing many repos",
"glyph": "🪄",
"logo": "logo.svg",
"logo_alt": "a friendly blue spider facing you",
"license": "MIT",
"homepage": "https://gitops.fuz.dev/",
"repository": "https://github.com/fuzdev/fuz_gitops",
"author": {
"name": "Ryan Atkinson",
"email": "mail@ryanatkn.com",
"url": "https://www.ryanatkn.com/"
},
"bugs": "https://github.com/fuzdev/fuz_gitops/issues",
"funding": "https://www.ryanatkn.com/funding",
"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"
},
"peerDependencies": {
"@fuzdev/fuz_css": ">=0.56.0",
"@fuzdev/fuz_ui": ">=0.190.0",
"@fuzdev/fuz_util": ">=0.54.0",
"@fuzdev/gro": ">=0.197.0",
"@sveltejs/kit": "^2",
"svelte": "^5",
"zod": "^4.3.6"
},
"devDependencies": {
"@changesets/changelog-git": "^0.2.1",
"@fuzdev/fuz_code": "^0.45.1",
"@fuzdev/fuz_css": "^0.58.0",
"@fuzdev/fuz_ui": "^0.191.4",
"@fuzdev/fuz_util": "^0.56.0",
"@fuzdev/gro": "^0.197.3",
"@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.57.0",
"@sveltejs/package": "^2.5.7",
"@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",
"esm-env": "^1.2.2",
"magic-string": "^0.30.21",
"prettier": "^3.7.4",
"prettier-plugin-svelte": "^3.5.1",
"svelte": "^5.55.2",
"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",
"src/lib/**/*.ts",
"!src/lib/**/*.test.*",
"!dist/**/*.test.*"
],
"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"
}
}
}