-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1011 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 1011 Bytes
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": "osu-wiki",
"version": "0.21.1",
"author": "clayton <me@clayton.cc>",
"bugs": "https://github.com/cl8n/osu-wiki-bin/issues",
"description": "Tools for osu! wiki contributors",
"keywords": [
"osu",
"osu-wiki",
"osu!",
"osu! wiki"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cl8n/osu-wiki-bin.git"
},
"bin": {
"osu-wiki": "build/cli.js"
},
"engines": {
"node": ">=16"
},
"files": [
"build"
],
"scripts": {
"build": "rimraf build && tsc",
"prepublishOnly": "npm run build"
},
"type": "module",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^9.4.0",
"js-yaml": "^4.1.0",
"unist-util-visit": "^5.0.0",
"update-notifier": "^6.0.2"
},
"devDependencies": {
"@cl8n/types": "^1.0.1",
"@types/js-yaml": "^4.0.8",
"@types/mdast": "^4.0.2",
"@types/node": "^16.18.59",
"@types/update-notifier": "^6.0.6",
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
}
}