-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 3.64 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 3.64 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "laravel-workflow",
"version": "0.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "node scripts/check-reference-docs.js && node scripts/check-server-env-docs.js && node scripts/check-doc-examples.js && node scripts/check-public-artifact-versions.js && node scripts/refresh-public-artifact-versions.js --check && node scripts/check-public-artifact-pins.js && node scripts/check-quickstart-execution-contract.js && node scripts/check-public-artifact-tuple-workflow.js && node scripts/check-discoverability.js && node scripts/check-installer-contract.js && node scripts/check-compatibility-authority.js && node scripts/check-platform-protocol-specs.js && node scripts/check-platform-conformance-authority.js && node scripts/check-sdk-neutrality-authority.js && docusaurus build && node scripts/generate-llms.js && node scripts/generate-llms-full.js && node scripts/generate-docs-page-release-audit.js && node scripts/patch-public-discovery-sitemap.js && node scripts/check-docs-release-policy.js && node scripts/check-llms-ai-surfaces.js && node scripts/check-docs-page-release-audit.js",
"check:reference-docs": "node scripts/check-reference-docs.js",
"check:doc-examples": "node scripts/check-doc-examples.js",
"check:discoverability": "node scripts/check-discoverability.js",
"check:public-artifact-versions": "node scripts/check-public-artifact-versions.js",
"check:public-artifact-tuple": "node scripts/refresh-public-artifact-versions.js --check",
"check:public-artifact-tuple-workflow": "node scripts/check-public-artifact-tuple-workflow.js",
"check:public-artifact-pins": "node scripts/check-public-artifact-pins.js",
"check:quickstart-execution-contract": "node scripts/check-quickstart-execution-contract.js",
"refresh:public-artifact-versions": "node scripts/refresh-public-artifact-versions.js",
"check:simulator-lines": "node scripts/check-simulator-lines.js",
"check:server-env-docs": "node scripts/check-server-env-docs.js",
"check:llms-ai-surfaces": "node scripts/check-llms-ai-surfaces.js",
"check:docs-page-release-audit": "node scripts/check-docs-page-release-audit.js",
"check:docs-release-policy": "node scripts/check-docs-release-policy.js",
"check:installer-contract": "node scripts/check-installer-contract.js",
"check:compatibility-authority": "node scripts/check-compatibility-authority.js",
"check:platform-protocol-specs": "node scripts/check-platform-protocol-specs.js",
"check:platform-conformance-authority": "node scripts/check-platform-conformance-authority.js",
"patch:public-discovery-sitemap": "node scripts/patch-public-discovery-sitemap.js",
"check:sdk-neutrality-authority": "node scripts/check-sdk-neutrality-authority.js",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids"
},
"dependencies": {
"@docusaurus/core": "2.2.0",
"@docusaurus/plugin-client-redirects": "^2.2.0",
"@docusaurus/preset-classic": "2.2.0",
"@mdx-js/react": "^1.6.22",
"clsx": "^1.2.1",
"prism-react-renderer": "^1.3.5",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "2.2.0"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=16.14"
}
}