-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
41 lines (41 loc) · 1.37 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
{
"name": "lightningdevkit.org",
"version": "1.0.0",
"description": "Lightning Dev Kit Documentation",
"author": "Lightning Dev Kit",
"license": "MIT",
"bugs": "https://github.com/lightningdevkit/lightningdevkit.org/issues",
"homepage": "https://lightningdevkit.org",
"repository": {
"type": "git",
"url": "git+https://github.com/lightningdevkit/lightningdevkit.org.git"
},
"keywords": [
"bitcoin",
"lightning",
"ldk",
"documentation"
],
"config": {
"dist": "docs/.vuepress/dist",
"port": "8080",
"linkcheck": "blc -ro --filter-level 2 --requests 1 --exclude edit/main --exclude issues/new"
},
"scripts": {
"prestart": "rm -rf $npm_package_config_dist",
"start": "NODE_ENV=development vuepress dev docs -p $npm_package_config_port",
"build": "NODE_ENV=production vuepress build docs",
"linkcheck": "start-server-and-test linkcheck:serve $npm_package_config_port linkcheck:local",
"linkcheck:serve": "serve -p $npm_package_config_port $npm_package_config_dist",
"linkcheck:local": "$npm_package_config_linkcheck http://localhost:$npm_package_config_port"
},
"devDependencies": {
"@spiralbtc/vuepress-devkit-theme": "^0.19.0",
"broken-link-checker": "0.7.8",
"serve": "14.2.0",
"start-server-and-test": "2.0.0",
"vue": "2.7.14",
"vue-server-renderer": "2.7.14",
"vuepress": "1.9.9"
}
}