-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
41 lines (41 loc) · 963 Bytes
/
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
{
"name": "@andymatuschak/note-link-janitor",
"version": "0.0.1",
"author": "Andy Matuschak",
"main": "out/index.js",
"license": "MIT",
"devDependencies": {
"@paperist/types-remark": "^0.1.3",
"@types/node": "^12.6.6",
"@types/unist": "^2.0.3",
"prettier": "~1",
"ts-node": "^8.3.0",
"typescript": "~3"
},
"repository": "andymatuschak/note-link-janitor",
"dependencies": {
"@types/mdast": "^3.0.3",
"pagerank.js": "^1.0.2",
"remark": "^11.0.1",
"remark-parse": "~7",
"remark-stringify": "~7",
"remark-wiki-link": "^0.0.4",
"unified": "^8.4.0",
"unist-util-find": "^1.0.1",
"unist-util-is": "^4.0.0",
"unist-util-visit-parents": "^3.0.1"
},
"engines": {
"node": ">= 12.0.0"
},
"scripts": {
"build": "tsc -p . --outDir dist && chmod +x dist/index.js"
},
"bin": {
"note-link-janitor": "./dist/index.js"
},
"files": [
"Readme.md",
"dist/**/*"
]
}