-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 815 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 815 Bytes
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
{
"name": "@d-zero/tsconfig",
"version": "2.0.0",
"description": "Generic `tsconfig` of D-ZERO Inc.",
"repository": {
"type": "git",
"url": "https://github.com/d-zero-dev/tsconfig.git"
},
"author": "D-ZERO Co., Ltd.",
"license": "MIT",
"files": [
"./tsconfig.json"
],
"scripts": {
"lint": "prettier --write *.{md,json}",
"release:major": "npm version major",
"release:minor": "npm version minor",
"release:patch": "npm version patch",
"update": "yarn upgrade-interactive"
},
"dependencies": {
"@tsconfig/node-lts": "24.0.0",
"@tsconfig/recommended": "1.0.13",
"@tsconfig/strictest": "2.0.8"
},
"devDependencies": {
"prettier": "latest"
},
"packageManager": "yarn@4.12.0",
"volta": {
"node": "24.14.0",
"yarn": "4.12.0"
}
}