forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 3.41 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "fluidframework-docs",
"version": "0.25.0",
"private": true,
"description": "Fluid Framework documentation",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "docs"
},
"license": "MIT",
"author": "Microsoft and contributors",
"type": "module",
"scripts": {
"build": "concurrently npm:build:api npm:build:md-magic && npm run hugo",
"build:api": "npm run download:api && npm run build:api-documentation && npm run build:redirects",
"build:api-documentation": "node ./api-markdown-documenter/index.js",
"build:local": "concurrently npm:build:local:api npm:build:md-magic && npm run hugo",
"build:local:api": "npm run download:api && npm run build:local:rollup && npm run build:local:api-documentation && npm run build:redirects",
"build:local:api-documentation": "node ./api-markdown-documenter/index.js true",
"build:local:rollup": "node ./local-api-rollup.js",
"build:md-magic": "markdown-magic",
"build:md-magic:code": "markdown-magic --files \"**/*.md\" !docs --workingDirectory ..",
"build:redirects": "node ./build-redirects.js",
"build:repo-docs": "npm run build:md-magic:code",
"ci:build": "npm run build",
"ci:linkcheck": "start-server-and-test ci:start 1313 linkcheck:full",
"ci:start": "http-server ./public --port 1313 --silent",
"clean": "rimraf --glob public content/docs/api _api-extractor-temp _doc-models",
"download:api": "node ./download-apis.js",
"format": "npm run prettier:fix",
"hugo": "hugo",
"linkcheck": "start-server-and-test start 1313 linkcheck:full",
"linkcheck:fast": "linkcheck http://localhost:1313 --skip-file skipped-urls.txt",
"linkcheck:full": "npm run linkcheck:fast -- --external",
"lint": "npm run markdownlint && npm run prettier",
"lint:fix": "npm run markdownlint:fix && npm run prettier:fix",
"markdownlint": "markdownlint-cli2",
"markdownlint:fix": "markdownlint-cli2 --fix",
"prettier": "prettier --check . --cache --ignore-path ../.prettierignore",
"prettier:fix": "prettier --write . --cache --ignore-path ../.prettierignore",
"start": "hugo server"
},
"dependencies": {
"@fluid-tools/api-markdown-documenter": "^0.17.1",
"@fluid-tools/markdown-magic": "file:../tools/markdown-magic",
"@fluidframework/build-common": "^2.0.3",
"@rushstack/node-core-library": "^4.0.2",
"@vscode/codicons": "0.0.35",
"chalk": "^5.3.0",
"concurrently": "^8.2.2",
"deepdash": "^5.3.9",
"download": "8.0.0",
"fs-extra": "^11.2.0",
"glob": "^10.3.12",
"hast-util-format": "^1.1.0",
"hast-util-to-html": "^9.0.3",
"http-server": "^14.1.1",
"hugo-extended": "^0.113.0",
"js-yaml": "^4.1.0",
"linkcheck-bin": "3.0.0-1",
"markdown-magic-package-json": "^2.0.2",
"markdown-magic-package-scripts": "^1.2.2",
"markdown-magic-template": "^1.0.1",
"markdownlint-cli2": "^0.12.1",
"markdownlint-rule-emphasis-style": "^1.0.1",
"markdownlint-rule-github-internal-links": "^0.1.0",
"markdownlint-rule-helpers": "^0.25.0",
"node-fetch": "^3.3.2",
"prettier": "~3.2.5",
"prettier-plugin-go-template": "^0.0.15",
"rimraf": "^5.0.5",
"start-server-and-test": "^2.0.3"
},
"packageManager": "[email protected]+sha512.d1a029e1a447ad90bc96cd58b0fad486d2993d531856396f7babf2d83eb1823bb83c5a3d0fc18f675b2d10321d49eb161fece36fe8134aa5823ecd215feed392",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"eslint",
"typescript"
]
}
}
}