-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
43
44
{
"name": "postman_client",
"version": "1.0.0",
"description": "The Postman API enables you to programmatically access data stored in your Postman account. For more information on the API, rate limiting, authentication, and policies click visit [Postman's Documentation](https://learning.postman.com/docs/introduction/overview/)",
"source": "./src/index.ts",
"main": "./dist/commonjs/index.js",
"module": "./dist/esm/index.js",
"browser": "./dist/index.umd.js",
"unpkg": "./dist/index.umd.js",
"types": "./dist/commonjs/index.d.ts",
"scripts": {
"build": "npm run build:all",
"build:cjs": "tsc --module commonjs --outDir dist/commonjs",
"build:esm": "tsc --module esnext --outDir dist/esm",
"build:umd": "tsc --module umd --outDir dist/umd",
"build:all": "npm run build:cjs && npm run build:esm && npm run build:umd",
"prepublishOnly": "npm run build"
},
"keywords": [
"typescript",
"sdk",
"api",
"client"
],
"files": [
"dist",
"README.md"
],
"author": "Postman Support",
"license": "MIT",
"devDependencies": {
"typescript": "5.3.3"
},
"dependencies": {
"zod": "3.22.0"
},
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
}