-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 3.98 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 3.98 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@herodevs/cli",
"version": "2.0.4",
"author": "HeroDevs, Inc",
"bin": {
"hd": "./bin/run.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/herodevs/cli"
},
"homepage": "https://github.com/herodevs/cli",
"bugs": "https://github.com/herodevs/cli/issues",
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"ci": "biome ci",
"ci:fix": "biome check --write",
"clean": "shx rm -rf dist && npm run clean:files && shx rm -rf node_modules",
"clean:files": "shx rm -f herodevs.**.csv herodevs.**.json herodevs.**.txt",
"dev": "npm run build && ./bin/dev.js",
"dev:debug": "npm run build && DEBUG=oclif:* ./bin/dev.js",
"dev:auth:local": "OAUTH_CONNECT_URL='http://localhost:6040/realms/herodevs_local/protocol/openid-connect' npm run dev auth login",
"dev:auth:logout": "npm run dev auth logout",
"format": "biome format --write",
"lint": "biome lint --write",
"postpack": "shx rm -f oclif.manifest.json",
"prepare": "shx test -d dist || npm run build",
"prepack": "oclif manifest",
"pretest": "npm run lint && npm run typecheck",
"readme": "npm run ci:fix && npm run build && oclif readme && sed -i '' 's|/plugin-help/blob/v|/plugin-help/blob/|; s|/plugin-update/blob/v|/plugin-update/blob/|' README.md",
"test": "vitest run",
"test:watch": "vitest watch",
"test:e2e": "globstar -- node --import tsx --import ./e2e/setup/register-mock-auth.mjs --test \"e2e/**/*.test.ts\"",
"typecheck": "tsc --noEmit",
"version": "oclif manifest",
"postversion": "node scripts/update-install-script-version.js && git add README.md"
},
"keywords": [
"herodevs",
"cli",
"herodevs cli"
],
"dependencies": {
"@amplitude/analytics-node": "^1.5.26",
"@apollo/client": "^4.0.9",
"@cyclonedx/cdxgen": "^12.1.1",
"@herodevs/eol-shared": "github:herodevs/eol-shared#v0.1.18",
"@inquirer/prompts": "^8.0.2",
"@oclif/core": "^4.8.0",
"@oclif/plugin-help": "^6.2.32",
"@oclif/plugin-update": "^4.7.16",
"@oclif/table": "^0.5.1",
"cli-progress": "^3.12.0",
"conf": "^15.1.0",
"date-fns": "^4.1.0",
"glob": "^13.0.0",
"graphql": "^16.11.0",
"node-machine-id": "^1.1.12",
"ora": "^9.0.0",
"packageurl-js": "^2.0.1",
"sloc": "^0.3.2",
"terminal-link": "^5.0.0",
"update-notifier": "^7.3.1"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@oclif/test": "^4.1.15",
"@types/cli-progress": "^3.11.6",
"@types/debug": "^4.1.12",
"@types/inquirer": "^9.0.9",
"@types/mock-fs": "^4.13.4",
"@types/node": "^24.10.1",
"@types/ora": "^3.1.0",
"@types/sinon": "^21.0.0",
"@types/sloc": "^0.2.3",
"@types/terminal-link": "^1.1.0",
"@types/update-notifier": "^6.0.8",
"globstar": "^1.0.0",
"mock-fs": "^5.5.0",
"oclif": "^4.22.47",
"shx": "^0.4.0",
"sinon": "^21.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"./bin",
"./dist",
"LICENSE"
],
"license": "MIT",
"main": "dist/index.js",
"oclif": {
"additionalVersionFlags": [
"-v"
],
"bin": "hd",
"dirname": "hd",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-update"
],
"hooks": {
"init": [
"./dist/hooks/init/00_npm-update-notifier.js",
"./dist/hooks/init/01_initialize_amplitude.js"
],
"prerun": "./dist/hooks/prerun/prerun.js",
"finally": "./dist/hooks/finally/finally.js"
},
"topicSeparator": " ",
"macos": {
"identifier": "com.herodevs.cli"
},
"win": {
"icon": "assets/icon.ico"
},
"update": {
"s3": {
"bucket": "end-of-life-dataset-cli-releases",
"host": "https://end-of-life-dataset-cli-releases.s3.amazonaws.com",
"acl": "bucket-owner-full-control"
}
}
},
"types": "dist/index.d.ts"
}