-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
57 lines (57 loc) · 1.46 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
{
"name": "fuse-docs",
"description": "This is our Fuse documentation project",
"private": true,
"devDependencies": {
"@fuse-open/fuselibs": "^2.8.0",
"@fuse-open/uno": "^2.8.0",
"concurrently": "^8.0.1",
"http-server": "^14.1.1",
"is-git-status-clean": "^1.0.0",
"npm-watch": "^0.11.0",
"rimraf": "^5.0.0",
"xbash": "^1.6.0"
},
"scripts": {
"api-docs": "uno build docs doc-export --output-dir api-docs -f",
"build": "bash build.sh",
"clean": "rimraf _site",
"deploy": "is-git-status-clean && bash deploy.sh",
"local": "bash build.sh --local --fast",
"local-slow": "bash build.sh --local",
"http-server": "http-server -o -c-1 -p 8080 _site",
"start": "npm run local && concurrently --kill-others-on-fail npm:http-server npm:watch",
"start-slow": "npm run local-slow && npm run http-server",
"watch": "npm-watch local"
},
"watch": {
"local": {
"patterns": [
"articles",
"media",
"static",
"layout.html",
"outline"
],
"extensions": "md,png,js,css,html",
"runOnChangeOnly": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/fuse-open/docs.git"
},
"keywords": [
"fuse",
"docs",
"uno",
"ux",
"api-docs"
],
"author": "Fuse Open",
"license": "MIT",
"bugs": {
"url": "https://github.com/fuse-open/docs/issues"
},
"homepage": "https://github.com/fuse-open/docs#readme"
}