-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.32 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.32 KB
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
{
"name": "@softwareventures/tsconfig",
"version": "0.0.0-development",
"description": "Standard TypeScript compiler configuration for Software Ventures Limited",
"keywords": [
"TypeScript"
],
"author": "Daniel Cassidy <mail@danielcassidy.me.uk>",
"homepage": "https://github.com/softwareventures/tsconfig",
"bugs": "https://github.com/softwareventures/tsconfig/issues",
"repository": "github:softwareventures/tsconfig",
"license": "ISC",
"scripts": {
"commit": "cz",
"fix": "prettier --write .",
"postinstall": "husky",
"lint": "prettier --check .",
"test": "tsc -p . -p dom -p webworker"
},
"sideEffects": false,
"peerDependencies": {
"typescript": "^5.8.3"
},
"devDependencies": {
"@commitlint/cli": "20.5.3",
"@commitlint/config-conventional": "20.5.3",
"@commitlint/cz-commitlint": "20.5.3",
"@softwareventures/precise-commits": "4.0.26",
"@softwareventures/prettier-config": "4.0.0",
"commitizen": "4.3.1",
"husky": "9.1.7",
"inquirer": "9.3.8",
"prettier": "3.8.3",
"typescript": "5.9.3"
},
"prettier": "@softwareventures/prettier-config",
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"release": {
"extends": "@softwareventures/semantic-release-config"
},
"packageManager": "yarn@4.14.1"
}