feat(amazon-shopping): scaffold amazon product search skill

This commit is contained in:
2026-04-15 18:24:13 -05:00
parent 26a968797c
commit 8ad532545d
14 changed files with 1234 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{
"name": "amazon-shopping-scripts",
"version": "1.0.0",
"description": "Amazon shopping helper CLI for OpenClaw skills",
"type": "module",
"scripts": {
"amazon-shopping": "tsx src/cli.ts",
"lint": "node scripts/lint.mjs",
"test": "node --import tsx --test tests/*.test.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"minimist": "^1.2.8"
},
"devDependencies": {
"@types/minimist": "^1.2.5",
"@types/node": "^24.8.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}