-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.71 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
{
"name": "@voxpelli/tsconfig",
"description": "Personal tsconfig bases",
"version": "15.0.0",
"license": "MIT",
"author": "Pelle Wessman <pelle@kodfabrik.se> (http://kodfabrik.se/)",
"homepage": "https://github.com/voxpelli/tsconfig",
"repository": {
"type": "git",
"url": "git://github.com/voxpelli/tsconfig.git"
},
"bugs": {
"url": "https://github.com/voxpelli/tsconfig/issues"
},
"files": [
"base.json",
"legacy.json",
"node*.json",
"recommended.json"
],
"scripts": {
"check": "tsc",
"dependents:0-update": "cd dependents-data/ && list-dependents list --precision=3 --min-downloads=10 --field engines --include-historic -n @voxpelli/tsconfig",
"dependents:1-filter": "list-dependents filter --sort-download --min-downloads=0 --repository-prefix=https://github.com/ -i dependents-data/voxpelli__tsconfig.ndjson | jq -s '[.[].repositoryUrl | sub(\"https://github.com/\";\"\";\"i\")] | unique | sort' > dependents-data/source-automatic.json",
"dependents:2-join": "jq -s '[.[].[]] | unique | sort as $all | $all - [$exclude.[].[].[]]' dependents-data/source-*.json --slurpfile exclude dependents-data/failures.json > dependents-data/joined.json",
"dependents-dedupe-manual": "jq '. as $all | $all - $exclude.[]' dependents-data/source-manual.json --slurpfile exclude dependents-data/source-automatic.json",
"dependents": "run-s dependents:*",
"prepare": "husky",
"test": "tsc"
},
"devDependencies": {
"@types/node": "^22.5.4",
"husky": "^9.1.5",
"list-dependents-cli": "^2.5.2",
"npm-run-all2": "^6.2.2",
"typescript": "~5.6.2",
"validate-conventional-commit": "^1.0.4"
},
"peerDependencies": {
"typescript": "~5.6.2"
}
}