-
-
Notifications
You must be signed in to change notification settings - Fork 543
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.27 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.27 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
{
"name": "spicetify-docs",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"prepare": "husky",
"lint": "biome check",
"format": "biome check --write"
},
"dependencies": {
"@astrojs/mdx": "^4.3.13",
"@astrojs/react": "^4.4.2",
"@astrojs/rss": "^4.0.15",
"@astrojs/sitemap": "^3.7.0",
"astro": "^5.17.3",
"astro-expressive-code": "^0.41.7",
"astro-pagefind": "^1.8.5",
"clsx": "^2.1.1",
"mdast-util-to-string": "^4.0.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"reading-time": "^1.5.0",
"remark-directive": "^4.0.0",
"swiper": "^12.0.2"
},
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"@types/node": "^24.6.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"husky": "^9.1.7",
"lint-staged": "^16.2.3",
"typescript": "^5.9.3"
},
"lint-staged": {
"*": "biome check --write --no-errors-on-unmatched"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}