-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.89 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.89 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
{
"name": "stremio-guide",
"type": "module",
"license": "MIT",
"homepage": "https://bye.undi.rest",
"contributors": [
"BadDeveloper"
],
"repository": {
"type": "git",
"url": "https://github.com/itzcozi/stremio-guide.git"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"format": "prettier --log-level warn --write \"{src/**/*.{ts,js,svelte,html,css},*.{ts,js,svelte,html,css,json,md,xml}}\"",
"check": "svelte-kit sync && svelte-check --workspace /src",
"check:watch": "svelte-kit sync && svelte-check --workspace /src --watch"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.50.2",
"@sveltejs/vite-plugin-svelte": "^4.0.4",
"autoprefixer": "^10.4.24",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.4.1",
"svelte": "^5.50.1",
"svelte-check": "^4.3.6",
"tailwindcss": "^3.4.19",
"vite": "^5.4.21"
},
"dependencies": {
"cssnano": "^7.1.2",
"lucide-svelte": "^0.447.0",
"vite-plugin-compression": "^0.5.1"
},
"prettier": {
"trailingComma": "all",
"singleQuote": false,
"svelteStrictMode": true,
"svelteAllowShorthand": true,
"svelteIndentScriptAndStyle": true,
"embeddedLanguageFormatting": "auto",
"bracketSameLine": true,
"bracketSpacing": true,
"arrowParens": "always",
"jsxSingleQuote": false,
"svelteSortOrder": "options-scripts-styles-markup",
"quoteProps": "as-needed",
"proseWrap": "always",
"useTabs": false,
"printWidth": 100,
"tabWidth": 2,
"singleAttributePerLine": true,
"semi": true,
"endOfLine": "lf",
"experimentalTernaries": true,
"htmlWhitespaceSensitivity": "css",
"filepath": "{src/**/*.{ts,js,svelte,html,css},*.{ts,js,svelte,html,css,json,md,xml}}",
"plugins": [
"prettier-plugin-svelte"
]
}
}