forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.28 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.28 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
{
"name": "@fluid-tools/markdown-magic",
"version": "2.93.0",
"private": true,
"description": "Contains shared utilities for Markdown content generation and embedding using markdown-magic.",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "tools/markdown-magic"
},
"license": "MIT",
"author": "Microsoft and contributors",
"sideEffects": false,
"bin": {
"markdown-magic": "bin/markdown-magic"
},
"scripts": {
"build": "npm run build:docs",
"build:docs": "node src/index.cjs --files README.md",
"check:biome": "biome check .",
"check:format": "npm run check:biome",
"format": "npm run format:biome",
"format:biome": "biome check . --write",
"test": "node src/index.cjs --files \"test/**/*.md\" !test/README.md"
},
"dependencies": {
"@rushstack/node-core-library": "^3.61.0",
"@tylerbu/markdown-magic": "2.4.0-tylerbu-1",
"chalk": "^4.1.2",
"markdown-magic-package-scripts": "^1.2.2",
"yargs": "17.7.2"
},
"devDependencies": {
"@biomejs/biome": "~2.4.5",
"@fluidframework/build-common": "^2.0.3",
"jiti": "^2.6.1"
},
"dependencyComments": [
"chalk is left at version 4 (not 5) to keep CommonJS support."
],
"typeValidation": {
"disabled": true
}
}