-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 loc) · 1008 Bytes
/
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
{
"name": "ae_sdk",
"version": "0.5.3",
"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",
"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"
},
"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"
}
}