-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.81 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.81 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
{
"name": "documentation",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./scripts/minify-css.sh && antora antora-playbook-docs.yml && antora antora-playbook-widget.yml",
"build-docs": "./scripts/minify-css.sh && antora antora-playbook-docs.yml",
"build-docs:ci": "antora antora-playbook-docs.yml",
"build-widget": "./scripts/minify-css.sh && antora antora-playbook-widget.yml",
"build-widget:ci": "antora antora-playbook-widget.yml",
"local": "yarn run build && ./scripts/beautify-logs.py",
"server-docs": "http-server build/docs -c-1",
"server-widget": "http-server build/widget -c-1",
"start-docs": "open ./build/docs",
"start-widget": "open ./build/widget",
"typecheck": "tsc --project tsconfig.functions.json",
"dev": "yarn build-docs:ci && wrangler pages dev build/docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kobiton/documentation.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kobiton/documentation/issues"
},
"homepage": "https://github.com/kobiton/documentation#readme",
"dependencies": {
"@antora/lunr-extension": "^1.0.0-alpha.8",
"@asciidoctor/tabs": "^1.0.0-beta.5",
"@mermaid-js/mermaid-cli": "^9.1.7",
"asciidoctor": "^3.0.2",
"mermaid": "^9.1.7",
"mermaid.cli": "^0.5.1"
},
"devDependencies": {
"@antora/cli": "^3.1.2",
"@antora/site-generator": "^3.1.2",
"@sntke/antora-mermaid-extension": "^0.0.3",
"http-server": "^14.1.1",
"postcss": "^8.4.25",
"postcss-clean": "^1.2.2",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0",
"python-shell": "^5.0.0",
"wrangler": "^3.91.0"
}
}