-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.3 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
{
"name": "frostdevkit.org",
"version": "0.0.1",
"description": "Frost Dev Kit Documentation",
"author": "Lightning Dev Kit",
"license": "MIT",
"bugs": "https://github.com/payjoin/payjoindevkit.org/issues",
"homepage": "https://www.arealayer.com/frost-dev-kit",
"repository": {
"type": "git",
"url": "git+https://github.com/frostdevkit/frostdevkit.org.git"
},
"keywords": [
"bitcoin",
"payjoin",
"pdk",
"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.5.0",
"broken-link-checker": "0.7.8",
"serve": "14.0.1",
"start-server-and-test": "1.14.0",
"vuepress": "1.9.7"
}
}