-
Notifications
You must be signed in to change notification settings - Fork 568
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 4.14 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 4.14 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@fluid-tools/api-markdown-documenter",
"version": "0.23.1",
"description": "Processes .api.json files generated by API-Extractor and generates Markdown documentation from them.",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "tools/api-markdown-documenter"
},
"license": "MIT",
"author": "Microsoft and contributors",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/api-markdown-documenter.d.ts"
},
"./beta": {
"import": "./lib/index.js",
"types": "./lib/api-markdown-documenter-public-beta.d.ts"
}
},
"scripts": {
"api": "fluid-build . --task api",
"build": "concurrently npm:build:compile npm:lint && npm run build:examples && npm run build:readme && npm run build:docs",
"build-and-test": "npm run build && npm run test",
"build:compile": "npm run tsc",
"build:docs": "api-extractor run --local && copyfiles -u 1 \"./_api-extractor-temp/doc-models/*\" ../../_api-extractor-temp/",
"build:examples": "tsc -p examples/tsconfig.json",
"build:readme": "markdown-magic --files \"**/*.md\"",
"build:tsc": "npm run tsc",
"check:biome": "biome check .",
"check:format": "npm run check:biome",
"check:release-tags": "api-extractor run --local --config ./api-extractor-lint.json",
"ci:build:docs": "api-extractor run && copyfiles -u 1 \"./_api-extractor-temp/doc-models/*\" ../../_api-extractor-temp/",
"clean": "rimraf --glob _api-extractor-temp nyc dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\"",
"eslint": "eslint src",
"eslint:fix": "eslint src --fix",
"format": "npm run format:biome",
"format-and-build": "npm run format && npm run build",
"format:biome": "biome check . --write",
"lint": "npm run eslint",
"lint:fix": "npm run eslint:fix",
"rebuild": "npm run clean && npm run build",
"test": "npm run test:mocha",
"test:coverage": "c8 npm test:mocha",
"test:mocha": "mocha \"lib/**/test/**/*.test.js\" --reporter-option maxDiffSize=100000",
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
"test:verbose": "npm run test:mocha:verbose",
"tsc": "tsc"
},
"c8": {
"all": true,
"cache-dir": "nyc/.cache",
"exclude": [
"src/**/test/**/*.*ts",
"lib/**/test/**/*.*js"
],
"exclude-after-remap": false,
"include": [
"src/**/*.*ts",
"lib/**/*.*js"
],
"report-dir": "nyc/report",
"reporter": [
"cobertura",
"html",
"text"
],
"temp-directory": "nyc/.nyc_output"
},
"dependencies": {
"@microsoft/api-extractor-model": "~7.30.7",
"@microsoft/tsdoc": "^0.15.1",
"@rushstack/node-core-library": "^5.14.0",
"chalk": "^5.6.2",
"hast-util-format": "^1.1.0",
"hast-util-from-html": "^2.0.3",
"hast-util-to-html": "^9.0.5",
"hastscript": "^9.0.1",
"mdast-util-from-markdown": "^2.0.2",
"mdast-util-gfm": "^3.1.0",
"mdast-util-phrasing": "^4.1.0",
"mdast-util-to-hast": "^13.2.0",
"mdast-util-to-markdown": "^2.1.2",
"unist-util-remove-position": "^5.0.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"@fluid-internal/mocha-test-setup": "~2.60.0",
"@fluid-tools/markdown-magic": "file:../markdown-magic",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.58.3",
"@fluidframework/eslint-config-fluid": "^6.1.0",
"@microsoft/api-extractor": "^7.52.11",
"@types/chai": "^5.2.1",
"@types/hast": "^3.0.4",
"@types/mdast": "^4.0.4",
"@types/mocha": "^10.0.10",
"@types/node": "^18.19.0",
"c8": "^10.1.3",
"chai": "^6.0.1",
"concurrently": "^9.2.1",
"copyfiles": "^2.4.1",
"cross-env": "^10.0.0",
"dir-compare": "^5.0.0",
"eslint": "~8.57.0",
"eslint-plugin-chai-expect": "^3.1.0",
"eslint-plugin-chai-friendly": "^1.1.0",
"mocha": "^11.7.2",
"mocha-multi-reporters": "^1.5.1",
"rimraf": "^6.0.1",
"typescript": "~5.9.2"
},
"packageManager": "pnpm@10.18.3+sha512.bbd16e6d7286fd7e01f6b3c0b3c932cda2965c06a908328f74663f10a9aea51f1129eea615134bf992831b009eabe167ecb7008b597f40ff9bc75946aadfb08d",
"fluidBuild": {
"tasks": {
"tsc": [
"^build:esnext",
"^tsc"
]
}
}
}