-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 2.12 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
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
{
"name": "kira-documentation",
"version": "1.0.0",
"private": false,
"scripts": {
"clear-docs": "rimraf ./temp/",
"pull-test-tagged": "yarn run clear-docs && npx nocusaurus -n $NOTION_INTEGRATION_TOKEN -r $NOCUSAURUS_TEST_ROOT_PAGE -m ./docs -i ./static/notion_imgs -p /notion_imgs/ --status-tag test",
"pull:latest": "yarn run clear-docs && npx nocusaurus -n $NOTION_INTEGRATION_TOKEN -r $NOCUSAURUS_TEST_ROOT_PAGE -m ./docs -i ./static/notion_imgs -p /notion_imgs/",
"//pull": "This uses the specific version of nocusaurus in package-lock.json, not necessarily the latest",
"pull": "yarn run clear-docs && npx nocusaurus -n $NOTION_INTEGRATION_TOKEN -r $NOCUSAURUS_PROD_ROOT_PAGE -m ./temp -i ./static/notion_imgs -p /notion_imgs/ --yes --log-level verbose",
"start": "docusaurus start",
"srcpages": "mv ./temp/srcpages/*.mdx ./src/pages/",
"update": "rsync -av --checksum --delete temp/ tabs/",
"build": "docusaurus build",
"deploy": "docusaurus deploy",
"swizzle": "docusaurus swizzle",
"write-translations": "docusaurus write-translations",
"//serve": "Needed, for example, to test the search functionality locally",
"serve": "docusaurus serve"
},
"dependencies": {
"@cookbookdev/docsbot": "^4.8.8",
"@docusaurus/core": "^3.4.0",
"@docusaurus/preset-classic": "^3.4.0",
"@easyops-cn/docusaurus-search-local": "^0.44.4",
"@mdx-js/react": "^3.0.0",
"clsx": "^1.2.1",
"nocusaurus": "1.6.2",
"prism-react-renderer": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-player": "^2.10.1",
"rehype-katex": "7.0.0",
"remark-math": "6.0.0",
"rimraf": "^4.1.2"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.4.0",
"@tsconfig/docusaurus": "^2.0.1",
"typescript": "^5.2.2"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "[email protected]",
"volta": {
"node": "18.18.0",
"yarn": "1.22.10"
}
}