-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.15 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.15 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
{
"name": "astro-git-view",
"version": "0.1.0-alpha",
"private": true,
"license": "GPL-3.0",
"homepage": "https://siverv.github.io/astro-git-view/",
"contributors": [
{
"name": "Siver K. Volle",
"email": "package-json.astro-git-view@siverv.no",
"url": "https://www.siverv.no"
}
],
"scripts": {
"dev": "npm run disable-telemetry && astro dev",
"start": "npm run disable-telemetry && astro dev",
"build": "npm run disable-telemetry && astro build",
"preview": "npm run disable-telemetry && astro preview",
"dev-ssr": "npm run disable-telemetry && astro dev --config ./astro.config.ssr.mjs",
"build-ssr": "npm run disable-telemetry && astro build --config ./astro.config.ssr.mjs",
"build-ssg-ssr": "npm run disable-telemetry && PUBLIC_IS_SSR=true astro build",
"serve-ssr": "npm run disable-telemetry && node ./ssr-server.mjs",
"disable-telemetry": "astro telemetry disable"
},
"devDependencies": {
"astro": "^1.0.0-beta.27",
"isbinaryfile": "^5.0.0"
},
"dependencies": {
"@astrojs/node": "^0.1.1",
"@siverv/astro-lunr": "0.0.3",
"astro-git": "./integrations/astro-git"
}
}