-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
77 lines (77 loc) · 1.93 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
{
"name": "hrvst-cli",
"version": "3.0.0",
"description": "CLI for Harvest",
"author": {
"name": "Kishan Gajera",
"url": "http://github.com/kgajera"
},
"license": "MIT",
"homepage": "https://kgajera.github.io/hrvst-cli",
"repository": {
"type": "git",
"url": "https://github.com/kgajera/hrvst-cli.git"
},
"bugs": {
"url": "https://github.com/kgajera/hrvst-cli/issues"
},
"keywords": [
"cli",
"harvest"
],
"type": "module",
"engines": {
"node": ">=20"
},
"exports": "./dist/cli.js",
"bin": {
"hrvst": "dist/cli.js"
},
"scripts": {
"build": "bun build src/cli.ts --minify --outdir ./dist --packages external --target node",
"format": "prettier --check .",
"format:write": "prettier --write .",
"lint": "eslint . --ext .ts",
"lint:fix": "bun run lint -- --fix",
"generate": "bun run scripts/generate-cli.ts",
"start": "node dist/cli.js",
"test": "vitest",
"watch": "bun run build --watch"
},
"dependencies": {
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"inquirer": "^11.0.2",
"lodash": "^4.17.21",
"open": "^10.1.0",
"ora": "^8.1.0",
"ospath": "^1.2.2",
"postman-collection": "^4.5.0",
"update-notifier": "^7.3.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/bun": "^1.1.9",
"@types/inquirer": "^9.0.7",
"@types/lodash": "^4.17.7",
"@types/node": "^20.11.28",
"@types/ospath": "^1.2.3",
"@types/postman-collection": "^3.5.10",
"@types/prettier": "^3.0.0",
"@types/supertest": "^6.0.2",
"@types/update-notifier": "^6.0.2",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"execa": "^8.0.1",
"prettier": "^3.3.3",
"supertest": "^6.3.4",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"files": [
"/dist"
]
}