-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.2 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
{
"name": "@vesselapi/integrations",
"version": "1.0.78",
"description": "Vessel integrations",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"sideEffects": false,
"files": [
"dist/**/*"
],
"repository": {
"url": "https://github.com/vesselapi/integrations"
},
"private": false,
"license": "MIT",
"scripts": {
"test": "jest",
"precheck": "yarn test && yarn build",
"build": "yarn tsc --noEmit && yarn tsup",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" --ignore-unknown"
},
"devDependencies": {
"@types/jest": "29.0.3",
"esbuild": "^0.17.19",
"jest": "29.5.0",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.0.3",
"ts-jest": "^29.0.5",
"tsup": "^6.7.0",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"axios": "^1.4.0",
"date-fns": "^2.29.3",
"libphonenumber-js": "^1.10.24",
"radash": "^11.0.0",
"type-fest": "^3.8.0",
"zod": "^3.21.4"
}
}