generated from ryanatkn/fuz_template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.01 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@ryanatkn/earbetter",
"version": "0.0.1",
"description": "ear trainer and tools for playing and programming music and audio",
"glyph": "🦜",
"logo": "logo.svg",
"logo_alt": "two beamed musical notes with ears",
"public": true,
"license": "Unlicense",
"homepage": "https://earbetter.ryanatkn.com/",
"author": {
"name": "Ryan Atkinson",
"email": "[email protected]",
"url": "https://www.ryanatkn.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryanatkn/earbetter.git"
},
"bugs": "https://github.com/ryanatkn/earbetter/issues",
"funding": "https://www.ryanatkn.com/funding",
"keywords": [
"ear training",
"ear trainer",
"music",
"music tools",
"audio",
"audio tools"
],
"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.25.3",
"@ryanatkn/eslint-config": "^0.5.5",
"@ryanatkn/fuz": "^0.130.1",
"@ryanatkn/gro": "^0.143.2",
"@ryanatkn/moss": "^0.18.2",
"@sveltejs/adapter-static": "^3.0.6",
"@sveltejs/kit": "^2.7.3",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"dequal": "^2.0.3",
"eslint": "^9.13.0",
"eslint-plugin-svelte": "^2.46.0",
"esm-env": "^1.0.0",
"prettier": "^3.3.3",
"svelte": "^5.1.3",
"svelte-check": "^4.0.5",
"tslib": "^2.8.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"uvu": "^0.5.6",
"zod": "^3.23.8"
},
"prettier": {
"plugins": [
"prettier-plugin-svelte"
],
"useTabs": true,
"printWidth": 100,
"singleQuote": true,
"bracketSpacing": false,
"overrides": [
{
"files": "package.json",
"options": {
"useTabs": false
}
}
]
},
"sideEffects": [
"**/*.css"
],
"files": [
"dist"
]
}