forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.37 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
{
"name": "@fluid-tools/markdown-magic",
"version": "2.12.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",
"format": "npm run prettier:fix",
"lint": "npm run prettier && npm run eslint",
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
"prettier": "prettier --check . --cache",
"prettier:fix": "prettier --write . --cache",
"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": {
"@fluidframework/build-common": "^2.0.3",
"prettier": "~3.0.3"
},
"dependencyComments": [
"chalk is left at version 4 (not 5) to keep CommonJS support."
],
"typeValidation": {
"disabled": true,
"broken": {},
"entrypoint": "internal"
}
}