-
Notifications
You must be signed in to change notification settings - Fork 211
/
package.json
47 lines (47 loc) · 1.24 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
{
"name": "definitelytyped-tools",
"private": true,
"engines": {
"node": ">=18.18.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "eslint . --report-unused-disable-directives --ext .ts",
"format": "prettier --write 'packages/**/*.ts'",
"test": "jest",
"build": "tsc -b .",
"retag": "node packages/retag/dist/index.js",
"ci:publish": "pnpm changeset tag && pnpm publish -r"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@types/jest": "^29.5.14",
"@types/node": "^18.19.64",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^48.11.0",
"jest": "^29.7.0",
"knip": "^5.36.3",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"pnpm": {
"overrides": {
"tough-cookie@<4.1.3": ">=4.1.3",
"semver@<5.7.2": ">=5.7.2",
"semver@>=6.0.0 <6.3.1": ">=6.3.1"
},
"updateConfig": {
"ignoreDependencies": [
"@types/strip-json-comments",
"strip-json-comments",
"typescript-*.*"
]
}
},
"packageManager": "[email protected]"
}