-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.55 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
{
"name": "git-scm-hooks",
"type": "module",
"version": "0.2.0",
"license": "MIT",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"bin": {
"git-scm-hooks": "./bin/cli.mjs"
},
"files": [
"bin",
"dist",
"LICENSE"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"release": "changeset publish",
"lint": "tsc --noEmit",
"start": "esno src/index.ts",
"test": "vitest",
"test1": "node ./dist/cli.mjs",
"verify-commit": "verify-commit-msg",
"prepare": "git-scm-hooks"
},
"author": "hunghg255",
"devDependencies": {
"@types/node": "^18.19.44",
"consola": "^3.2.3",
"esno": "^0.16.3",
"git-scm-hooks": "^0.0.10",
"picocolors": "^1.0.1",
"typescript": "^5.5.4",
"unbuild": "^2.0.0",
"verify-commit-msg": "^0.0.14"
},
"dependencies": {
"commander": "^11.1.0",
"unreadconfig": "^0.0.13"
},
"keywords": [
"Git Hooks"
],
"bugs": {
"url": "https://github.com/hunghg255/git-scm-hooks/issues"
},
"homepage": "https://github.com/hunghg255/git-scm-hooks#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hunghg255/git-scm-hooks.git"
},
"git-hooks": {
"commit-msg": "npm run verify-commit"
}
}