-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 936 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 936 Bytes
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
{
"name": "@ordao/orclient-docs",
"private": true,
"version": "1.0.0",
"description": "Documentation site for orclient",
"main": "index.js",
"config": {
"orclient": "../../libs/orclient",
"build_from_orclient": "../../apps/orclient-docs/dist"
},
"scripts": {
"build": "cd $npm_package_config_orclient && npx typedoc ./src/index.ts --out $npm_package_config_build_from_orclient --readme $npm_package_config_build_from_orclient/../INDEX.md",
"start": "npx http-server -p 5174 -o ./dist",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sim31/ordao.git"
},
"keywords": [
"ordao"
],
"author": "sim31",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/sim31/ordao/issues"
},
"homepage": "https://github.com/sim31/ordao#readme",
"devDependencies": {
"@ordao/orclient": "^1.1.4",
"http-server": "^14.1.1"
}
}