-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 845 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 845 Bytes
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
{
"name": "phaset-docs",
"type": "module",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"lint": "npm run lint:md",
"lint:code": "npx @biomejs/biome check --write .",
"lint:md": "npx markdownlint-cli2 --fix \"**/*.md\" \"#node_modules\"",
"build": "astro check && astro build && npm run build:docs",
"build:ci": "npm run build",
"build:docs": "node build-api-docs.mjs",
"preview": "astro preview",
"astro": "astro",
"prepare": "husky"
},
"dependencies": {
"@astrojs/check": "latest",
"@astrojs/starlight": "latest",
"@biomejs/biome": "2",
"astro": "5",
"husky": "9",
"markdownlint": "0",
"markdownlint-cli2": "0",
"sharp": "latest",
"typescript": "5"
},
"devDependencies": {
"js-yaml": "4"
}
}