-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.17 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
{
"name": "@joshunrau/tsconfig",
"type": "module",
"version": "0.0.4",
"packageManager": "pnpm@8.15.3",
"description": "TypeScript configuration for my personal projects",
"author": "Joshua Unrau",
"license": "MIT",
"homepage": "https://github.com/joshunrau/tsconfig#readme",
"repository": {
"type": "git",
"url": "https://github.com/joshunrau/tsconfig.git"
},
"bugs": {
"url": "https://github.com/joshunrau/tsconfig/issues"
},
"main": "tsconfig.json",
"keywords": [
"typescript",
"typescript-config"
],
"files": [
"tsconfig.json"
],
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"typescript": "^5.4.3"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@joshunrau/prettier-config": "^0.3.0",
"@joshunrau/semantic-release": "^0.1.0",
"husky": "^9.0.11",
"prettier": "^3.2.5"
},
"scripts": {
"prepare": "husky"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": "@joshunrau/prettier-config",
"release": {
"extends": [
"@joshunrau/semantic-release"
]
}
}