-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.74 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
{
"name": "@huberyyang/todo-scripts",
"type": "module",
"version": "1.0.5",
"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"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "unbuild",
"release": "bumpp && npm publish",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"taze": "npx taze major -r",
"prepare": "husky",
"commitlint": "commitlint --edit",
"cz": "git cz"
},
"dependencies": {
"chalk": "^5.3.0",
"ora": "^8.0.1",
"terminal-link": "^3.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@types/node": "^20.11.24",
"bumpp": "^9.4.0",
"commitizen": "^4.3.1",
"cz-git": "^1.11.0",
"eslint": "^9.16.0",
"execa": "^8.0.1",
"fast-glob": "^3.3.2",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"typescript": "^5.3.3",
"unbuild": "^2.0.0"
},
"lint-staged": {
"*": "eslint . --fix"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}