-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.28 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
{
"name": "@zeusdeux/md-toc",
"version": "1.0.6",
"description": "Generate a GitHub compatible table of contents from headings in a markdown file",
"bin": {
"md-toc": "./cmd.js"
},
"type": "module",
"scripts": {
"release": "np",
"prepare": "husky install",
"type-check": "tsc --project .",
"test": "echo 'Still gotta write some'"
},
"keywords": [
"markdown",
"table of contents",
"tool",
"cli",
"toc",
"remark",
"unified"
],
"author": "Mudit Ameta <[email protected]>",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"remark": "^14.0.1",
"remark-toc": "^8.0.0",
"to-vfile": "^7.2.1",
"yargs": "^17.2.1"
},
"engines": {
"node": ">=14.x",
"pnpm": ">=6",
"npm": ">=6"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.9.4",
"@types/yargs": "^17.0.4",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.2",
"lint-staged": "^11.2.3",
"np": "^7.5.0",
"prettier": "2.4.1",
"typescript": "^5.3.2"
},
"main": "cmd.js",
"lint-staged": {
"*.{js,cjs,mjs}": "eslint --cache --fix",
"*.md": [
"md-toc --write",
"prettier --write"
],
"*.{js,cjs,mjs,json,yaml}": "prettier --write"
}
}