-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.74 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.74 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
{
"name": "@miniproto/amazon-listing-cli",
"version": "1.0.0",
"description": "Professional CLI tool for managing Amazon SP-API product listings, specifically designed for wire harness manufacturers",
"main": "dist/cli/index.js",
"type": "module",
"bin": {
"amazon-listing": "./dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli/index.js",
"test": "echo \"Tests coming soon\" && exit 0",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run build"
},
"keywords": [
"amazon",
"sp-api",
"selling-partner-api",
"wire-harness",
"cli",
"listing",
"e-commerce",
"marketplace",
"automation"
],
"author": "MiniProto <info@miniproto.com>",
"license": "MIT",
"homepage": "https://github.com/amalcoci/amazon-listing-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/amalcoci/amazon-listing-cli.git"
},
"bugs": {
"url": "https://github.com/amalcoci/amazon-listing-cli/issues"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.490.0",
"@vercel/blob": "^1.1.1",
"axios": "^1.6.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"csv-parse": "^5.5.0",
"csv-stringify": "^6.4.0",
"dotenv": "^16.3.0",
"glob": "^10.3.0",
"js-yaml": "^4.1.0",
"sharp": "^0.33.0"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/js-yaml": "^4.0.0",
"@types/node": "^20.10.0",
"@vercel/node": "^3.0.0",
"typescript": "^5.3.0",
"vercel": "^33.0.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"files": [
"dist/**/*",
"examples/**/*",
"docs/**/*",
"README.md",
"CLAUDE.md",
"LICENSE"
]
}