Compare commits

...

2 Commits

Author SHA1 Message Date
c5665eb1c6 Updated package.json. 2024-07-18 02:57:36 -04:00
21ec5c5cb8 Updated package.json. 2024-07-18 02:52:14 -04:00

View File

@ -1,9 +1,9 @@
{ {
"name": "paapi5-nodejs-sdk", "name": "amazon-pa-api5-node-ts",
"version": "2.1.0", "version": "2.1.0",
"description": "ProductAdvertisingAPI 5.0 NodeJS SDK", "description": "ProductAdvertisingAPI 5.0 NodeJS SDK rewritten in TypeScript.",
"license": "Apache-2.0", "license": "Apache-2.0",
"main": "dist/index.ts", "main": "dist/src/index.ts",
"scripts": { "scripts": {
"clean": "rimraf dist", "clean": "rimraf dist",
"build": "tsc", "build": "tsc",
@ -14,14 +14,14 @@
"start": "npm-run-all clean --parallel watch:build --print-label" "start": "npm-run-all clean --parallel watch:build --print-label"
}, },
"author": { "author": {
"name": "Product Advertising API", "name": "David A. Ball",
"email": "", "email": "david@daball.me",
"url": "https://webservices.amazon.com/paapi5/documentation/index.html" "url": "https://daball.me"
}, },
"homepage": "https://github.com/amzn/paapi5-nodejs-sdk", "homepage": "https://github.com/daball/amazon-pa-api-5.0-sdk-node-ts",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/amzn/paapi5-nodejs-sdk" "url": "https://github.com/daball/amazon-pa-api-5.0-sdk-node-ts"
}, },
"dependencies": { "dependencies": {
"superagent": "^9.0.0" "superagent": "^9.0.0"
@ -52,6 +52,7 @@
"searchitems", "searchitems",
"getvariations", "getvariations",
"getbrowsenodes", "getbrowsenodes",
"ProductAdvertisingAPI" "ProductAdvertisingAPI",
"typescript"
] ]
} }