-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "pdpl-cli",
"version": "0.12.0",
"description": "",
"scripts": {
"check-updates": "npx npm-check-updates",
"pre-commit": "npm run build && npm test && npm run eslint-ci && npm run prettier-ci",
"test": "vitest run",
"test-watch": "vitest",
"dev": "rm -rf ./dist && tsc -w",
"build": "rm -rf ./dist && tsc",
"eslint": "eslint --fix src",
"eslint-ci": "eslint src",
"prettier": "prettier --write ./src/**/*.ts",
"prettier-ci": "prettier --check ./src/**/*.ts",
"prettier-watch": "onchange './src/**/*.ts' -- prettier --write --ignore-unknown {{changed}}",
"format": "npm run eslint && npm run prettier",
"caddy": "caddy run --envfile .env",
"apis": "./bin/dev.js api:list",
"get": "./bin/dev.js api:get",
"logs": "./bin/dev.js api:logs",
"curl": "./bin/dev.js api:curl",
"info": "./bin/dev.js api:info",
"queue": "./bin/dev.js api:queue:get",
"import": "./bin/dev.js import",
"config": "./bin/dev.js config"
},
"author": "",
"license": "MIT",
"type": "module",
"types": "index.d.ts",
"engines": {
"node": ">=20"
},
"dependencies": {
"@oclif/core": "^4.0.13",
"axios": "^1.7.2",
"axios-retry": "^4.4.2",
"cli-table3": "^0.6.5",
"csv": "^6.3.9",
"dotenv": "^16.4.5",
"duckdb-async": "^1.0.0",
"joi": "^17.13.3",
"jose": "^5.6.3",
"js-yaml": "^4.1.0",
"mustache": "^4.2.0",
"vcf": "^2.1.2"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/mustache": "^4.2.5",
"@types/node": "^20.14.11",
"@types/vcf": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.57.0",
"onchange": "^7.1.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"vitest": "^2.0.4"
},
"bin": {
"pdpl": "./bin/run.js"
},
"oclif": {
"bin": "pdpl",
"dirname": "pdpl",
"commands": {
"strategy": "pattern",
"target": "./dist/commands",
"globPatterns": [
"**/*.+(js)",
"!**/_*"
]
}
}
}