-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.14 KB
/
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
39
40
41
42
{
"name": "amadeus-ts",
"version": "5.0.3",
"description": "Node library for the Amadeus travel APIs Written in TypeScript",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "pnpm lint && rimraf ./dist",
"build": "tsup ./src/amadeus/index.ts --clean --format cjs,esm --dts",
"test": "vitest run",
"lint": "tsc",
"release": "pnpm build && pnpm publish --provenance --no-git-checks --access public"
},
"keywords": [
"amadeus",
"travel",
"api",
"apis",
"hotels",
"flights",
"sdk"
],
"author": "darseen",
"homepage": "https://developers.amadeus.com",
"repository": {
"url": "https://github.com/darseen/amadeus-ts"
},
"license": "MIT",
"packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee",
"dependencies": {
"qs": "^6.13.0"
},
"devDependencies": {
"@types/node": "^22.9.0",
"@types/qs": "^6.9.17",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
}
}