-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.77 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
{
"name": "@commercelayer/cli-plugin-resources",
"description": "Commerce Layer CLI Resources plugin",
"version": "6.8.1",
"author": "Pierluigi Viti <[email protected]>",
"homepage": "https://github.com/commercelayer/commercelayer-cli-plugin-resources",
"repository": "commercelayer/commercelayer-cli-plugin-resources",
"bugs": "https://github.com/commercelayer/commercelayer-cli-plugin-resources/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-resources",
"devPlugins": [
"@oclif/plugin-help"
],
"plugins": [],
"topics": {
"resources": {
"description": "Execute CRUD operations on API resources"
},
"order": {
"description": "Execute special operations on orders",
"hidden": true
}
},
"repositoryPrefix": "<%- repo %>/blob/main/<%- commandPath %>",
"additionalHelpFlags": [
"-h"
],
"topicSeparator": ":"
},
"scripts": {
"build": "rm -rf lib && tsc -b",
"prepack": "pnpm resources && 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",
"resources": "pnpm update @commercelayer/sdk && tsx src/util/resources/build.ts",
"generate": "pnpm resources",
"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",
"@oclif/plugin-help": "^6.2.18",
"@oclif/test": "^3.2.15",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/chai": "^4.3.20",
"@types/inquirer": "^8.2.10",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.0",
"@types/node-notifier": "^8.0.5",
"chai": "^4.5.0",
"eslint": "^8.57.1",
"mocha": "^10.8.2",
"nyc": "^15.1.0",
"oclif": "^4.15.29",
"semantic-release": "^23.1.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@commercelayer/cli-core": "^5.4.2",
"@commercelayer/cli-ux": "^1.0.6",
"@commercelayer/sdk": "^6.25.1",
"@oclif/core": "^3.27.0",
"inquirer": "^8.2.6",
"json-2-csv": "^3.20.0",
"node-notifier": "^10.0.1",
"open": "^8.4.2",
"tslib": "^2.8.1"
},
"publishConfig": {
"access": "public"
}
}