-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.31 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
48
{
"name": "pdl",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"cli": "tsx src/cli.ts",
"build": "tsc",
"circular": "dpdm --ext ts --circular --output .rush/circular.json src",
"ncu": "ncu -u --packageFile package.json",
"typecheck": "tsc --noEmit",
"lint": "run-p lint:*",
"lint:eslint": "eslint --fix",
"lint:sort": "sort-package-json",
"index": "run-s index:*",
"index:clean": "find src/ -type f -name 'index.ts' -exec rm {} \\;",
"index:generate": "barrelsby -c ./barrelsby.json -D",
"index:lint": "eslint src/**/index.ts --fix"
},
"dependencies": {
"@nodesuite/case": "^0.3.32",
"arg": "^5.0.2",
"dotenv": "^16.3.1",
"inquirer": "^9.2.7",
"peopledatalabs": "^5.0.5",
"tslib": "^2.5.3",
"tslog": "^4.8.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@nodesuite/eslint-config": "^0.3.32",
"@rushstack/eslint-config": "^3.3.2",
"@types/inquirer": "^9.0.3",
"@types/node": "^18.16.18",
"@typescript-eslint/parser": "^5.60.0",
"barrelsby": "^2.8.0",
"eslint": "8.36.0",
"npm-check-updates": "^16.10.12",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"sort-package-json": "^2.4.1",
"tsx": "^3.12.7",
"typescript": "^5.1.3"
},
"engines": {
"node": ">=18"
}
}