-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.63 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
{
"name": "@theurgi/help",
"version": "0.0.0-semantic-release",
"publishConfig": {
"access": "public"
},
"description": "Generate formatted help text for Node.js CLIs",
"keywords": [
"nodejs",
"cli",
"help"
],
"license": "MIT",
"repository": "https://github.com/theurgi/help",
"author": "theurgi",
"type": "module",
"files": [
"dist"
],
"main": "dist/main.js",
"module": "dist/main.js",
"types": "dist/main.d.ts",
"scripts": {
"prepare": "husky install",
"build": "rm -rf dist; tsup src/*.ts --dts --format=esm",
"format": "prettier --ignore-path .gitignore --write '**/*.{js,json,md,ts}'",
"lint": "eslint --cache --fix --ignore-path .gitignore .",
"type-check": "tsc --noEmit --skipLibCheck",
"prepack": "pnpm build && clean-pkg-json"
},
"lint-staged": {
"*.{js,ts}": "eslint .",
"*.{js,json,md,ts}": "prettier --write ."
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"dependencies": {
"strip-ansi": "^7.0.1",
"table": "^6.8.1",
"term-size": "^3.0.2",
"word-wrap": "^1.2.3"
},
"devDependencies": {
"@commitlint/cli": "^17.4.3",
"@commitlint/config-conventional": "^17.4.3",
"@theurgi/eslint-config": "^1.3.0",
"@types/node": "^17.0.45",
"chalk": "^5.2.0",
"clean-pkg-json": "^1.2.0",
"eslint": "^8.34.0",
"husky": "^7.0.4",
"kleur": "^4.1.5",
"lint-staged": "^12.5.0",
"prettier": "^2.8.4",
"tsup": "^6.6.2",
"typescript": "^4.9.5"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"svelte"
]
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"extends": "@theurgi/eslint-config/node"
}
}