-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.17 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
{
"name": "@atlauncher/wiki",
"version": "0.0.1",
"description": "Static wiki written with Markdown using Astro and Starlight.",
"type": "module",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/ATLauncher/wiki.git"
},
"author": "Ryan Dowling <ryan.dowling@atlauncher.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ATLauncher/wiki/issues"
},
"homepage": "https://github.com/ATLauncher/wiki#readme",
"scripts": {
"astro": "astro",
"build": "astro check && astro build",
"dev": "astro dev",
"prepare": "husky",
"preview": "astro preview"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write"
]
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/starlight": "^0.34.3",
"astro": "^5.7.13",
"sharp": "^0.34.1",
"starlight-image-zoom": "^0.12.0",
"starlight-links-validator": "^0.16.0",
"typescript": "^5.8.3"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"patch-package": "^8.0.0",
"prettier": "^3.5.3"
}
}