generated from qq15725/starter-ts-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.53 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
{
"name": "changelog-notify",
"type": "module",
"version": "0.1.0",
"packageManager": "pnpm@7.9.0",
"description": "Notify the git change log to your web hook",
"author": "wxm",
"license": "MIT",
"homepage": "https://github.com/qq15725/changelog-notify",
"repository": {
"type": "git",
"url": "git+https://github.com/qq15725/changelog-notify.git"
},
"engines": {
"node": ">=14.18.1"
},
"bugs": {
"url": "https://github.com/qq15725/changelog-notify/issues"
},
"keywords": [
"changelog",
"notify",
"webhook"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"changelog-notify": "./bin/index.mjs"
},
"files": [
"bin",
"dist"
],
"scripts": {
"stub": "unbuild --stub",
"lint": "eslint src",
"test": "vitest",
"build": "unbuild",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"release": "bumpp package.json --commit \"release: v%s\" --push --all --tag",
"cli": "node ./bin/index.mjs"
},
"devDependencies": {
"@qq15725/eslint-config": "^1.1.0",
"@types/node": "^18.15.3",
"bumpp": "^9.0.0",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.36.0",
"typescript": "^4.9.5",
"unbuild": "^1.1.2",
"vitest": "^0.29.3"
},
"dependencies": {
"cac": "^6.7.14",
"consola": "^2.15.3",
"dotenv": "^16.0.3"
}
}