-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
37 lines (37 loc) · 1.08 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
{
"name": "tooling",
"version": "1.23.5",
"description": "A collection of reusable tooling for webpack repos.",
"main": "index.js",
"repository": "https://github.com/webpack/tooling",
"author": "Tobias Koppers <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"pretty-lint-base": "node node_modules/prettier/bin/prettier.cjs --cache --ignore-unknown .",
"pretty-lint-fix": "yarn pretty-lint-base --log-level warn --write",
"pretty-lint": "yarn pretty-lint-base --check",
"test": "yarn lint",
"lint": "yarn special-lint && yarn pretty-lint && tsc",
"special-lint": "node lockfile-lint"
},
"peerDependencies": {
"prettier": "*",
"typescript": "*"
},
"devDependencies": {
"@types/node": "^22.5.4",
"@types/yargs": "^15.0.12",
"prettier": "^3.0.1",
"typescript": "^5.6.2"
},
"dependencies": {
"@yarnpkg/lockfile": "^1.1.0",
"ajv": "^8.1.0",
"commondir": "^1.0.1",
"glob": "^7.1.6",
"json-schema-to-typescript": "^9.1.1",
"terser": "^5.32.0",
"yargs": "^16.1.1"
}
}