-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 1.87 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
82
83
84
85
86
{
"name": "@huberyyang/todo-scripts",
"type": "module",
"version": "1.0.4",
"packageManager": "[email protected]",
"description": "Some public executable scripts",
"author": "HuberyYang",
"license": "MIT",
"homepage": "https://github.com/Hub-yang/todo-scripts",
"repository": {
"type": "git",
"url": "git+https://github.com/Hub-yang/todo-scripts.git"
},
"bugs": {
"url": "https://github.com/Hub-yang/todo-scripts/issues"
},
"keywords": [
"scripts",
"node",
"bash",
"bin",
"sh"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"hubery": "bin/bin.mjs",
"console": "bin/console.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "unbuild",
"release": "bumpp && npm publish",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"commitlint": "commitlint --edit"
},
"dependencies": {
"chalk": "^5.3.0",
"ora": "^8.0.1",
"terminal-link": "^3.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.4",
"@commitlint/cli": "^19.1.0",
"@commitlint/config-conventional": "^19.1.0",
"@types/node": "^20.11.24",
"bumpp": "^9.4.0",
"commitizen": "^4.3.0",
"cz-git": "^1.9.4",
"eslint": "^8.57.0",
"eslint-plugin-format": "^0.1.0",
"execa": "^8.0.1",
"fast-glob": "^3.3.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"typescript": "^5.3.3",
"unbuild": "^2.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint --edit $1"
}
},
"lint-staged": {
"*": "eslint . --fix"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}