forked from darseen/amadeus-ts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
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": "4.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": "[email protected]+sha512.73a29afa36a0d092ece5271de5177ecbf8318d454ecd701343131b8ebc0c1a91c487da46ab77c8e596d6acf1461e3594ced4becedf8921b074fbd8653ed7051c",
"dependencies": {
"qs": "^6.13.0"
},
"devDependencies": {
"@types/node": "^22.5.5",
"@types/qs": "^6.9.16",
"rimraf": "^6.0.1",
"tsup": "^8.2.4",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
}
}