-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.64 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
{
"name": "@nodecfdi/tsconfig",
"description": "Archivos de configuración de TypeScript base para proyectos NodeCfdi",
"version": "1.7.3",
"type": "module",
"files": [
"tsconfig.app.json",
"tsconfig.client.json",
"tsconfig.package.json",
"tsconfig.base.json"
],
"exports": {
"./tsconfig.app.json": "./tsconfig.app.json",
"./tsconfig.client.json": "./tsconfig.client.json",
"./tsconfig.package.json": "./tsconfig.package.json",
"./tsconfig.base.json": "./tsconfig.base.json"
},
"scripts": {
"prepare": "is-in-ci || husky",
"changelog": "auto-changelog -p && git add CHANGELOG.md",
"release": "np",
"version": "pnpm run changelog"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"auto-changelog": "^2.5.0",
"husky": "^9.1.7",
"is-in-ci": "^1.0.0",
"np": "^10.1.0"
},
"author": "Fernando Isidro <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/nodecfdi/tsconfig",
"repository": {
"type": "git",
"url": "git+https://github.com/nodecfdi/tsconfig.git"
},
"bugs": {
"url": "https://github.com/nodecfdi/tsconfig/issues"
},
"keywords": [
"tsconfig",
"typescript",
"nodecfdi"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public",
"tag": "latest"
},
"auto-changelog": {
"template": "keepachangelog",
"hideCredit": true
},
"np": {
"message": "chore(release): :tada: %s",
"tag": "latest",
"branch": "main",
"yolo": true
}
}