-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.64 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
60
61
62
63
64
65
66
67
{
"name": "@mcbeutils/docgen",
"author": "Nobu <[email protected]>",
"description": "📜 Our Official Documentation Generator",
"license": "MIT",
"version": "1.0.0",
"main": "bin",
"bin": {
"docgen": "bin/index.js"
},
"scripts": {
"build": "tsc",
"prepare": "husky install",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prettier": "prettier --write src",
"format": "npm run lint && npm run prettier",
"format:fix": "npm run lint:fix && npm run prettier"
},
"homepage": "https://github.com/MCBE-Utilities/docgen#readme",
"bugs": {
"url": "https://github.com/MCBE-Utilities/docgen/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MCBE-Utilities/docgen.git"
},
"files": [
"bin"
],
"keywords": [
"typescript",
"documentation",
"generator",
"doc",
"docs",
"gen",
"docgen"
],
"engines": {
"node": ">=14"
},
"engineStrict": true,
"dependencies": {
"chalk": "^4.1.2",
"comment-json": "^4.2.2",
"module-alias": "^2.2.2",
"yargs": "^17.4.1"
},
"devDependencies": {
"@types/comment-json": "^2.4.2",
"@types/module-alias": "^2.0.1",
"@types/node": "^17.0.25",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.13.0",
"eslint-config-marine": "^9.4.1",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"prettier": "^2.6.2",
"typescript": "^4.6.3"
}
}