-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 801 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 801 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
{
"name": "@discordluau/docs",
"private": true,
"type": "module",
"version": "0.0.1",
"packageManager": "[email protected]",
"scripts": {
"postinstall": "deno install -Arf jsr:@deno/deployctl",
"dev": "astro dev",
"start": "astro dev",
"astro:build": "astro check && astro build",
"build": "./lunew generateReference && pnpm astro:build",
"preview": "astro preview",
"astro": "astro",
"deploy": "deployctl deploy --prod --entrypoint dist/server/entry.mjs",
"lint": "biome lint",
"fmt": "biome format --write ."
},
"dependencies": {
"@astrojs/check": "^0.7.0",
"@astrojs/starlight": "^0.23.1",
"@deno/astro-adapter": "^0.1.2",
"astro": "^4.8.6",
"typescript": "^5.4.5"
},
"devDependencies": {
"@biomejs/biome": "1.8.3"
}
}