-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.19 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.19 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
{
"name": "hf-data-dumper",
"version": "1.0.3",
"repository": {
"type": "git",
"url": "https://github.com/happyforce/hf-data-dumper-cli"
},
"description": "CLI tool for dumping data from Public Happyforce API",
"main": "dist/index.js",
"bin": {
"hf-dumper": "./dist/index.js"
},
"pkg": {
"scripts": "dist/**/*.js",
"assets": [
"node_modules/**/*"
],
"targets": ["node18-macos-x64", "node18-linux-x64", "node18-win-x64"],
"outputPath": "dist"
},
"scripts": {
"build": "npm run generate-api && tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"package": "npm run build && pkg . --debug",
"generate-api": "openapi --input https://api.myhappyforce.com/api/v3/api-docs --output ./src/api/generated --name HappyforceAPI --useOptions --useUnionTypes",
"postpackage": "chmod +x dist/hf-data-dumper-* || true"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"commander": "^11.1.0",
"axios": "^1.6.2"
},
"devDependencies": {
"@types/node": "^20.10.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"pkg": "^5.8.1",
"openapi-typescript-codegen": "^0.25.0"
}
}