-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.08 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@ui-js/grok",
"version": "1.8.0",
"description": "A tool to build beautiful documentation from TypeScript declaration files",
"publishConfig": {
"access": "public"
},
"keywords": [
"TypeScript",
"documentation",
"tool"
],
"license": "MIT",
"main": "bin/grok-cli.js",
"bin": {
"grok": "./bin/grok-cli.js"
},
"files": [
"bin"
],
"devDependencies": {
"@cortex-js/prettier-config": "^1.1.1",
"@types/node": "^17.0.23",
"esbuild": "^0.17.11",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"lint-staged": "^12.3.7",
"please-upgrade-node": "^3.2.0"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"chalk": "^4.0.0",
"ci-info": "^3.3.0",
"cosmiconfig": "^7.0.1",
"fs-extra": "^10.0.1",
"glob": "^7.2.0",
"highlight.js": "^11.5.0",
"markdown-it": "^12.3.2",
"markdown-it-deflist": "^2.1.0",
"postcss": "^8.4.12",
"postcss-cli": "^9.1.0",
"prettier": "^2.6.1",
"resolve-from": "^5.0.0",
"typedoc": "0.22.13",
"typescript": "^4.9.5",
"update-notifier": "^5.1.0",
"yaml": "^1.10.2",
"yargs": "^17.4.0"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ui-js/grok.git"
},
"scripts": {
"build": "bash ./scripts/build.sh",
"clean": "bash ./scripts/clean.sh",
"coverage": "bash ./scripts/test.sh coverage",
"dist": "bash ./scripts/build.sh production",
"grok": "node ./bin/grok-cli.js",
"lint": "eslint --ignore-path ./.prettierignore --fix \"src/*.{ts,js}\"",
"prettier": "prettier --ignore-path ./.prettierignore --write \"**/*.{ts,js,css,md,yml,json}\" \"!vendor/**\"",
"test": "bash ./scripts/test.sh"
},
"prettier": "@cortex-js/prettier-config",
"lint-staged": {
"**/*.ts": [
"eslint --fix",
"git add"
],
"*.{js,css,json,md}": [
"prettier --write",
"git add"
]
}
}