-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.03 KB
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": "@beuluis/hook-cli",
"version": "1.3.0",
"description": "A small hook cli that can be used with for example husky",
"type": "module",
"bin": {
"hook-cli": "./dist/index.js",
"@beuluis/hook-cli": "./dist/index.js"
},
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prepack": "npm run build",
"build": "rm -rf ./dist && npm run build:types && npm run build:js",
"build:types": "tsc -p tsconfig.build.json",
"build:js": "rollup -c",
"hook-cli": "tsx src/index.ts",
"test": "vitest",
"test:cov": "npm run test -- --coverage",
"lint": "eslint --cache .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Beuterei/hook-cli.git"
},
"author": "Luis Beu <me@luisbeu.de> (https://luisbeu.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Beuterei/hook-cli/issues"
},
"homepage": "https://github.com/Beuterei/hook-cli#readme",
"dependencies": {
"citty": "^0.1.6",
"console-log-colors": "^0.5.0",
"console-table-printer": "^2.14.6"
},
"devDependencies": {
"@beuluis/eslint-config": "3.0.1",
"@beuluis/hook-cli": "1.2.1",
"@rollup/plugin-node-resolve": "16.0.1",
"@rollup/plugin-typescript": "12.1.4",
"@types/node": "22.17.2",
"@vitest/coverage-v8": "3.2.4",
"eslint": "9.33.0",
"husky": "9.1.7",
"lint-staged": "16.1.5",
"rollup": "4.47.1",
"tslib": "2.8.1",
"tsx": "4.20.4",
"typescript": "5.9.2",
"typescript-eslint": "8.40.0",
"vitest": "3.2.4",
"vitest-mock-extended": "3.1.0"
},
"keywords": [
"cli",
"hooks",
"husky",
"husky-hooks"
],
"lint-staged": {
"*.{js,ts,json,yml,yaml}": [
"eslint --cache"
]
}
}