-
-
Notifications
You must be signed in to change notification settings - Fork 547
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.42 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.42 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
{
"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": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt",
"format:check": "oxfmt --check"
},
"dependencies": {
"@astrojs/mdx": "^5.0.3",
"@astrojs/react": "^5.0.3",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.2",
"astro": "^6.1.7",
"astro-expressive-code": "^0.41.7",
"astro-pagefind": "^1.8.6",
"clsx": "^2.1.1",
"mdast-util-to-string": "^4.0.0",
"react": "19.2.5",
"react-dom": "19.2.5",
"reading-time": "^1.5.0",
"remark-directive": "^4.0.0",
"swiper": "^12.1.3"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"oxfmt": "^0.45.0",
"oxlint": "^1.60.0",
"typescript": "^6.0.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs,astro}": [
"oxlint --fix",
"oxfmt"
],
"*.{json,jsonc,json5,md,mdx,yaml,yml,html}": "oxfmt"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}