-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.57 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
{
"name": "@commercelayer/cli-plugin-exports",
"description": "Commerce Layer CLI Exports plugin",
"version": "3.4.1",
"author": "Pierluigi Viti <pierluigi@commercelayer.io>",
"homepage": "https://github.com/commercelayer/commercelayer-cli-plugin-exports",
"repository": "commercelayer/commercelayer-cli-plugin-exports",
"bugs": "https://github.com/commercelayer/commercelayer-cli-plugin-exports/issues",
"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": "cl-exports",
"devPlugins": [
"@oclif/plugin-help"
],
"plugins": [],
"topics": {
"exports": {
"description": "Export resources from Commerce Layer",
"hidden": false
}
},
"repositoryPrefix": "<%- repo %>/blob/main/<%- commandPath %>",
"additionalHelpFlags": [
"-h"
],
"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\"",
"posttest": "eslint . --ext .ts --config .eslintrc",
"readme": "cl-cli-dev readme --plugin --bin=commercelayer && git add README.md",
"lint": "eslint src --ext .ts --config .eslintrc",
"lint:fix": "eslint src --fix",
"release": "pnpm prepack && pnpm postpack"
},
"types": "lib/index.d.ts",
"devDependencies": {
"@commercelayer/cli-dev": "^3.0.7",
"@commercelayer/eslint-config-ts": "^1.4.5",
"@oclif/plugin-help": "^6.2.22",
"@oclif/test": "^3.2.15",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.7",
"@types/node-notifier": "^8.0.5",
"chai": "^4.5.0",
"eslint": "^8.57.1",
"mocha": "^10.8.2",
"nyc": "^15.1.0",
"oclif": "^4.17.16",
"semantic-release": "^24.2.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"dependencies": {
"@commercelayer/cli-core": "^5.6.2",
"@commercelayer/cli-ux": "^1.0.7",
"@commercelayer/sdk": "^6.29.0",
"@oclif/core": "^3.27.0",
"axios": "^1.7.9",
"cli-table3": "^0.6.5",
"node-notifier": "^10.0.1",
"open": "^8.4.2",
"spinnies": "^0.5.1",
"tslib": "^2.8.1"
},
"publishConfig": {
"access": "public"
}
}