-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 999 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 999 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
{
"type": "module",
"license": "Apache-2.0",
"scripts": {
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write '**/*.{js,mjs,ts,tsx,json,md,mdx,astro}' && eslint --max-warnings=0 --fix .",
"lint": "prettier --check '**/*.{js,mjs,ts,tsx,json,md,mdx,astro}' && eslint --max-warnings=0 ."
},
"dependencies": {
"@astrojs/starlight": "^0.37.5",
"@interledger/docs-design-system": "^0.11.0",
"astro": "^5.17.1",
"sharp": "^0.34.5",
"starlight-fullview-mode": "^0.2.6",
"starlight-links-validator": "^0.19.2"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@typescript-eslint/parser": "^8.48.0",
"astro-eslint-parser": "^1.2.2",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.5.0",
"globals": "^16.5.0",
"prettier": "3.6.2",
"prettier-plugin-astro": "0.14.1",
"typescript-eslint": "^8.48.0"
}
}