-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.53 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
{
"name": "starlight-overrides-map",
"version": "0.0.1",
"license": "MIT",
"description": "An interactive map of Starlight component overrides.",
"author": "HiDeoo <github@hideoo.dev> (https://hideoo.dev)",
"type": "module",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "prettier -c --cache . && eslint . --cache --max-warnings=0 && astro check",
"prepare": "husky"
},
"dependencies": {
"@astrojs/check": "^0.8.2",
"@astrojs/starlight": "^0.25.1",
"astro": "^4.12.2",
"sharp": "^0.32.5"
},
"devDependencies": {
"@hideoo/eslint-config": "^3.0.1",
"@hideoo/prettier-config": "^2.0.0",
"@hideoo/tsconfig": "^2.0.1",
"eslint": "^8.57.0",
"husky": "^9.1.1",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@9.6.0",
"private": true,
"sideEffects": false,
"keywords": [
"starlight",
"component",
"overrides",
"map",
"documentation",
"astro"
],
"homepage": "https://github.com/HiDeoo/starlight-overrides-map",
"repository": {
"type": "git",
"url": "https://github.com/HiDeoo/starlight-overrides-map.git"
},
"bugs": "https://github.com/HiDeoo/starlight-overrides-map/issues",
"lint-staged": {
"*": [
"prettier -w -u --cache",
"eslint --cache --no-warn-ignored --max-warnings=0"
]
}
}