-
Notifications
You must be signed in to change notification settings - Fork 233
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.74 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.74 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
35
36
37
38
39
40
41
42
{
"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 build",
"build-copy-theme": "npx tsx node_modules/@chocolatey-software/build-tools/build/copy-theme.ts docs",
"build-purge-css": "npx tsx node_modules/@chocolatey-software/build-tools/build/purge-css.ts docs",
"build-copy-playwright": "npx tsx node_modules/@chocolatey-software/build-tools/build/copy-playwright.ts docs",
"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": "yarn build-copy-theme && yarn build-copy-playwright && yarn build-purge-css",
"link-github": "npx tsx node_modules/@chocolatey-software/build-tools/build/link-github.ts",
"link-local": "npx tsx node_modules/@chocolatey-software/build-tools/build/link-local.ts"
},
"devDependencies": {
"@chocolatey-software/assets": "2.0.0",
"@chocolatey-software/astro": "2.6.0",
"@chocolatey-software/build-tools": "2.6.0",
"@chocolatey-software/playwright": "2.6.0"
},
"dependencies": {
"@chocolatey-software/docs": "2.6.0"
}
}