-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
154 lines (154 loc) · 4.3 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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "maxp.co",
"version": "2.0.0",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"build": "vite build",
"clean": "rimraf node_modules .cspellcache .eslintcache .svelte-kit .vercel",
"dev": "vite dev",
"fix": "bun run fix:eslint && bun run fix:prettier",
"fix:eslint": "ESLINT_USE_FLAT_CONFIG=false eslint . --ext js,ts,svelte --fix --cache --report-unused-disable-directives --max-warnings 0 --ignore-path .gitignore",
"fix:prettier": "prettier \"./**/*.{js,ts,svelte,css,json}\" --write --cache --ignore-path .gitignore",
"preinstall": "npx only-allow bun",
"postinstall": "bunx simple-git-hooks",
"lint": "bun run lint:eslint && bun run lint:prettier && bun run lint:spellcheck && bun run lint:svelte",
"lint:eslint": "ESLINT_USE_FLAT_CONFIG=false eslint . --ext js,ts,svelte --cache --report-unused-disable-directives --max-warnings 0 --ignore-path .gitignore",
"lint:prettier": "prettier \"./**/*.{html,css,js,ts,svelte,json}\" --check --cache --ignore-path .gitignore",
"lint:spellcheck": "cspell \"./**/*.{html,css,js,ts,svelte}\" --cache --gitignore",
"lint:svelte": "svelte-kit sync && svelte-check",
"preview": "bun run build && vite preview"
},
"simple-git-hooks": {
"pre-commit": "bunx lint-staged && bun run lint:svelte",
"commit-msg": "bunx commitlint --edit --config=commitlint.config.cjs",
"pre-push": "bun run build"
},
"lint-staged": {
"*.{js,ts,svelte}": "cross-env ESLINT_USE_FLAT_CONFIG=false eslint --fix --cache --report-unused-disable-directives --max-warnings 0",
"*.{html,css,js,ts,svelte,json}": "prettier --write --cache",
"package.json": "sort-package-json"
},
"browserslist": [
"defaults and supports es6-module"
],
"prettier": {
"plugins": [
"prettier-plugin-svelte",
"prettier-plugin-tailwindcss"
],
"semi": false,
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
},
"dependencies": {
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.12",
"bits-ui": "^0.21.10",
"clsx": "^2.1.1",
"cmdk-sv": "^0.0.17",
"lucide-svelte": "^0.395.0",
"mode-watcher": "^0.3.0",
"svelte-sonner": "^0.3.24",
"tailwind-merge": "^2.3.0",
"tailwind-variants": "^0.2.1"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@sveltejs/adapter-static": "^3.0.2",
"@sveltejs/kit": "^2.5.16",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@tailwindcss/typography": "^0.5.13",
"@types/eslint": "^8.56.10",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"autoprefixer": "^10.4.19",
"cross-env": "^7.0.3",
"cspell": "^8.8.4",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-compat": "^5.0.0",
"eslint-plugin-svelte": "^2.39.4",
"lint-staged": "^15.2.7",
"mdsvex": "^0.11.2",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.6.4",
"rimraf": "^5.0.7",
"shiki": "^1.6.5",
"simple-git-hooks": "^2.11.1",
"sort-package-json": "^2.10.0",
"svelte": "^5.0.0-next.155",
"svelte-check": "^3.8.0",
"sveltekit-embed": "^0.0.12",
"tailwindcss": "^3.4.4",
"tslib": "^2.6.3",
"typescript": "^5.4.5",
"vite": "^5.3.1"
},
"cspell": {
"version": "0.2",
"language": "en",
"dictionaries": [
"typescript",
"html",
"css",
"npm"
],
"enableFiletypes": [
"html",
"css",
"javascript",
"typescript",
"tailwindcss",
"svelte",
"!json",
"!svg"
],
"words": [
"clsx",
"cmdk",
"dtlp",
"farcaster",
"gehc",
"keymap",
"lucide",
"maxp",
"maxpetretta",
"mdsvex",
"monaspace",
"monokai",
"petretta",
"quickcast",
"rehype",
"shiki",
"shikiji",
"slnt",
"sonner",
"swyx",
"tailwindcss",
"twitt",
"wdth",
"wght",
"worldcoin"
]
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
},
"trustedDependencies": [
"svelte-preprocess"
]
}