ae_sdk
Version:
A simple SDK for Aliexpress (dropshipping and affiliate) APIs.
38 lines • 1.01 kB
JSON
{
"name": "ae_sdk",
"version": "0.6.0",
"description": "A simple SDK for Aliexpress (dropshipping and affiliate) APIs.",
"private": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"keywords": [
"typescript",
"ae",
"aliexpress",
"sdk"
],
"author": "moh3a",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/moh3a/ae_sdk"
},
"homepage": "https://github.com/moh3a/ae_sdk",
"bugs": "https://github.com/moh3a/ae_sdk/issues",
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@types/node": "^20.17.10",
"tsup": "^7.2.0",
"typescript": "^5.7.2",
"vitest": "^0.34.6"
},
"scripts": {
"dev": "vitest",
"test": "vitest run",
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"ci": "pnpm run lint && pnpm run test && pnpm run build",
"release": "pnpm run lint && pnpm run test && pnpm run build && changeset publish"
}
}