-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
139 lines (139 loc) · 3.8 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
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
135
136
137
138
139
{
"name": "@commercelayer/cli",
"description": "Commerce Layer CLI",
"version": "6.5.1",
"author": "Pierluigi Viti <[email protected]>",
"homepage": "https://github.com/commercelayer/commercelayer-cli",
"repository": "https://github.com/commercelayer/commercelayer-cli",
"bugs": "https://github.com/commercelayer/commercelayer-cli/issues",
"bin": {
"commercelayer": "./bin/run.js",
"cl": "./bin/run.js",
"clayer": "./bin/run.js"
},
"engines": {
"node": ">=20"
},
"files": [
"/bin/run.*",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"keywords": [
"ecommerce",
"cli",
"commercelayer"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "commercelayer",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-plugins",
"@oclif/plugin-autocomplete"
],
"devPlugins": [],
"aliases": {
"blocked": null
},
"hooks": {
"init": [
"./lib/hooks/init/update"
],
"prerun": [
"./lib/hooks/prerun/login",
"./lib/hooks/prerun/plugin",
"./lib/hooks/prerun/application"
],
"postrun": [
"./lib/hooks/postrun/save",
"./lib/hooks/postrun/autocomplete",
"./lib/hooks/postrun/plugins_update"
]
},
"topics": {
"applications": {
"description": "Manage login to CLI applications"
},
"plugins": {
"description": "Manage CLI plugins"
},
"config": {
"description": "Manage CLI configuration",
"hidden": true
},
"cli": {
"description": "Core CLI commands",
"hidden": false
}
},
"helpClass": "./lib/help",
"repositoryPrefix": "<%- repo %>/blob/main/<%- commandPath %>",
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
],
"topicSeparator": ":"
},
"scripts": {
"build": "rm -rf lib && tsc -b",
"prepack": "pnpm build && oclif manifest && pnpm readme",
"postpack": "rm -f oclif.manifest.json",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\" --require dotenv/config",
"posttest": "eslint . --ext .ts --config .eslintrc",
"readme": "cl-cli-dev readme --multi && git add README.md && git add docs/*",
"lint": "eslint src --ext .ts --config .eslintrc",
"lint:fix": "eslint src --fix"
},
"types": "lib/index.d.ts",
"devDependencies": {
"@commercelayer/cli-dev": "^3.0.6",
"@commercelayer/eslint-config-ts": "^1.4.5",
"@fig/complete-oclif": "^2.0.1",
"@oclif/test": "^3.2.15",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/chai": "^4.3.20",
"@types/configstore": "^4.0.0",
"@types/inquirer": "^8.2.10",
"@types/lodash.kebabcase": "^4.1.9",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.1",
"@types/update-notifier": "^5.1.0",
"@withfig/autocomplete-types": "^1.31.0",
"chai": "^4.5.0",
"dotenv": "^16.4.7",
"eslint": "^8.57.1",
"mocha": "^10.8.2",
"nyc": "^15.1.0",
"oclif": "^4.16.0",
"semantic-release": "^24.2.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@commercelayer/cli-core": "^5.4.2",
"@commercelayer/cli-ux": "^1.0.6",
"@commercelayer/provisioning-sdk": "^2.2.0",
"@commercelayer/sdk": "^6.25.2",
"@oclif/core": "^3.27.0",
"@oclif/plugin-autocomplete": "^3.2.11",
"@oclif/plugin-help": "6.2.14",
"@oclif/plugin-not-found": "^3.2.29",
"@oclif/plugin-plugins": "^5.4.19",
"configstore": "^5.0.1",
"inquirer": "^8.2.6",
"lodash.kebabcase": "^4.1.1",
"tslib": "^2.8.1",
"update-notifier-cjs": "^5.1.6"
},
"publishConfig": {
"access": "public"
}
}