-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.35 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
65
66
67
{
"name": "@framers/agentos-live-docs",
"version": "1.0.0",
"private": true,
"scripts": {
"clean:cache": "node -e \"require('fs').rmSync('.docusaurus', { recursive: true, force: true })\"",
"pull-docs": "node scripts/pull-docs.mjs",
"test:publication": "node --test scripts/publication-contract.test.mjs scripts/pull-docs-links.test.mjs plugins/search-manifest.test.js",
"verify:publication": "AGENTOS_DOCS_STRICT=1 npm run test:publication && AGENTOS_DOCS_STRICT=1 node scripts/pull-docs.mjs --check && AGENTOS_DOCS_STRICT=1 npm run build",
"build:guides": "AGENTOS_DOCS_GUIDES_ONLY=1 AGENTOS_DOCS_DISABLE_LOCAL_SEARCH=1 AGENTOS_DOCS_DISABLE_SEARCH_MANIFEST=1 AGENTOS_DOCS_STRICT=0 npm run build",
"start:guides": "AGENTOS_DOCS_GUIDES_ONLY=1 AGENTOS_DOCS_DISABLE_LOCAL_SEARCH=1 AGENTOS_DOCS_DISABLE_SEARCH_MANIFEST=1 AGENTOS_DOCS_STRICT=0 npm run start",
"prebuild": "npm run clean:cache && npm run pull-docs",
"prestart": "npm run pull-docs",
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "docusaurus build",
"typecheck": "tsc --noEmit -p tsconfig.json",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve"
},
"dependencies": {
"@docusaurus/core": "^3.10.1",
"@docusaurus/plugin-client-redirects": "^3.10.1",
"@docusaurus/preset-classic": "^3.10.1",
"@docusaurus/theme-mermaid": "^3.10.1",
"@easyops-cn/docusaurus-search-local": "^0.55.1",
"@mdx-js/react": "^3.0.0",
"clsx": "^2.1.0",
"docusaurus-plugin-typedoc": "^1.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typedoc": "~0.28.0",
"typedoc-plugin-markdown": "^4.5.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.10.1",
"@docusaurus/types": "^3.10.1",
"baseline-browser-mapping": "^2.10.11",
"typescript": "~5.6.0"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 3 chrome version",
"last 3 firefox version",
"last 5 safari version"
]
},
"engines": {
"node": ">=18.0"
},
"overrides": {
"dompurify": "^3.4.2",
"serialize-javascript": "^7.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/framerslab/agentos-live-docs"
},
"license": "MIT"
}