-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.38 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
{
"name": "@kdtjs/tsconfig",
"type": "module",
"version": "0.0.1",
"description": "Shared TypeScript config for my projects",
"author": "Diep Dang <khangdt310722@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/kdtjs/tsconfig",
"repository": "github:kdtjs/tsconfig",
"bugs": {
"email": "khangdt310722@gmail.com",
"url": "https://github.com/kdtjs/tsconfig/issues"
},
"exports": {
".": "./tsconfig.json",
"./lib": "./tsconfig.lib.json",
"./tsconfig.lib.json": "./tsconfig.lib.json",
"./vue": "./tsconfig.vue.json",
"./tsconfig.vue.json": "./tsconfig.vue.json"
},
"main": "tsconfig.json",
"files": [
"tsconfig.json",
"tsconfig.*.json"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"release": "np --no-yarn --no-release-draft --yolo --message='chore: release v%s'",
"prepare": "simple-git-hooks"
},
"peerDependencies": {
"typescript": ">=5.0"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"np": "latest",
"simple-git-hooks": "latest"
},
"commitlint": {
"extends": "@commitlint/config-conventional"
},
"simple-git-hooks": {
"commit-msg": "npx --no -- commitlint --edit ${1}"
}
}