forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.58 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
{
"name": "@fluid-tools/markdown-magic",
"version": "2.4.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",
"markdown-magic-template": "^1.0.1",
"yargs": "17.7.2"
},
"devDependencies": {
"@fluidframework/build-common": "^2.0.3",
"prettier": "~3.0.3"
},
"packageManager": "[email protected]+sha512.d1a029e1a447ad90bc96cd58b0fad486d2993d531856396f7babf2d83eb1823bb83c5a3d0fc18f675b2d10321d49eb161fece36fe8134aa5823ecd215feed392",
"dependencyComments": [
"chalk is left at version 4 (not 5) to keep CommonJS support."
],
"typeValidation": {
"disabled": true,
"broken": {},
"entrypoint": "internal"
}
}