-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.34 KB
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
79
80
81
82
83
84
85
{
"name": "pdpl-cli",
"version": "0.15.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",
"prettier-ci": "prettier --check ./src",
"prettier-watch": "onchange './src/**/*.ts' -- prettier --write --ignore-unknown {{changed}}",
"format": "npm run eslint && npm run prettier",
"caddy": "caddy run --envfile .env",
"oclif-readme": "npm run build && npm exec oclif readme -- --readme-path='./docs/commands.md'",
"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",
"devlog": "PATH_TO_DEVLOG_SOURCE='/Users/joshcanhelp/Notes/Logs' ./bin/dev.js dev:log"
},
"author": "",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"dependencies": {
"@oclif/core": "^4.2.10",
"axios": "^1.7.9",
"axios-retry": "^4.5.0",
"cli-table3": "^0.6.5",
"csv": "^6.3.9",
"dotenv": "^16.4.7",
"duckdb-async": "^1.1.3",
"joi": "^17.13.3",
"jose": "^5.9.6",
"js-yaml": "^4.1.0",
"mustache": "^4.2.0",
"vcf": "^2.1.2"
},
"devDependencies": {
"@joshcanhelp/mdsync": "^0.5.0",
"@types/js-yaml": "^4.0.9",
"@types/mustache": "^4.2.5",
"@types/node": "^22.15.21",
"@types/vcf": "^2.0.7",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"eslint": "^9.24.0",
"onchange": "^7.1.0",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vitest": "^3.1.4"
},
"bin": {
"pdpl": "bin/run.js"
},
"oclif": {
"bin": "pdpl",
"dirname": "pdpl",
"commands": {
"strategy": "pattern",
"target": "./dist/commands",
"globPatterns": [
"**/*.+(js)",
"!**/_*"
]
}
}
}