forked from chocolatey/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.08 KB
/
package.json
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
{
"name": "docs",
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/chocolatey/docs.git"
},
"author": "chocolatey",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/chocolatey/docs/issues"
},
"homepage": "https://github.com/chocolatey/docs#readme",
"type": "module",
"version": "0.0.1",
"scripts": {
"astro": "npx astro",
"browsers": "npx playwright install --with-deps",
"build": "yarn dependencies && yarn telemetry && yarn choco-theme && yarn browsers && npx astro check && npx astro build",
"dependencies": "yarn install --immutable",
"dev": "yarn dependencies && yarn telemetry && yarn choco-theme && yarn browsers && npx astro dev",
"playwright": "npx playwright test",
"preview": "npx astro preview",
"start": "yarn dev",
"telemetry": "npx astro telemetry disable",
"choco-theme": "npx --quiet ts-node --skipIgnore node_modules/choco-theme/build/choco-theme.ts --repository=docs"
},
"dependencies": {
"choco-astro": "0.1.2",
"choco-theme": "0.8.1"
}
}