forked from metriport/metriport
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.97 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@metriport/commonwell-sdk",
"version": "4.15.15",
"description": "SDK to simplify CommonWell API integration - by Metriport Inc.",
"author": "Metriport Inc. <[email protected]>",
"homepage": "https://metriport.com/",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./client/*": "./dist/client/*.js",
"./models/*": "./dist/models/*.js",
"./common/*": "./dist/common/*.js"
},
"typesVersions": {
"*": {
"/": [
"dist/index.d.ts"
],
"client/*": [
"dist/client/*"
],
"models/*": [
"dist/models/*"
],
"common/*": [
"dist/common/*"
]
}
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"repository": {
"url": "https://github.com/metriport/metriport.git",
"type": "git",
"directory": "packages/commonwell-sdk"
},
"scripts": {
"clean": "rimraf dist && rimraf node_modules",
"tsc": "tsc",
"watch": "tsc --watch",
"build": "tsc -p .",
"build:cloud": "npm run build",
"typecheck": "tsc --noEmit",
"lint": "npx eslint . --ext .ts",
"lint-fix": "npm run lint --fix",
"prettier-fix": "npx prettier '**/*.ts' --write",
"test": "echo \"No test specified yet\""
},
"bugs": {
"url": "https://github.com/metriport/metriport/issues"
},
"dependencies": {
"@metriport/shared": "^0.9.8",
"axios": "^1.4.0",
"http-status": "^1.7.0",
"jsonwebtoken": "^9.0.0",
"zod": "^3.22.1"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@tsconfig/recommended": "^1.0.2",
"@types/jsonwebtoken": "^9.0.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"prettier": "^2.8.3",
"typescript": "^4.9.5"
}
}