-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.61 KB
/
package.json
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
{
"name": "@ryanatkn/fuz_template",
"version": "0.0.1",
"description": "a static web app and Node library template with TypeScript, Svelte, SvelteKit, Vite, esbuild, Fuz, and Gro",
"glyph": "❄",
"logo": "logo.svg",
"logo_alt": "a friendly pixelated spider facing you",
"public": true,
"homepage": "https://template.fuz.dev/",
"repository": "https://github.com/ryanatkn/fuz_template",
"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": ">=20.17"
},
"devDependencies": {
"@ryanatkn/belt": "^0.28.0",
"@ryanatkn/eslint-config": "^0.5.7",
"@ryanatkn/fuz": "^0.130.5",
"@ryanatkn/gro": "^0.147.1",
"@ryanatkn/moss": "^0.20.2",
"@sveltejs/adapter-static": "^3.0.6",
"@sveltejs/kit": "^2.8.2",
"@sveltejs/vite-plugin-svelte": "^4.0.1",
"eslint": "^9.15.0",
"eslint-plugin-svelte": "^2.46.0",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.3.2",
"svelte": "^5.2.7",
"svelte-check": "^4.1.0",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0",
"uvu": "^0.5.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"
]
}