forked from bjerkio/abax-node-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.4 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
{
"name": "abax-node-sdk",
"version": "3.2.6",
"description": "SDK for Abax API",
"license": "Apache-2.0",
"repository": "github:bjerkio/abax-node-sdk",
"author": "Bjerk AS <office@bjerk.io> (https://bjerk.io)",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsx watch src/main.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --ext .ts,.tsx",
"test": "vitest **/*.test.ts",
"test:all": "TZ=UTC vitest",
"test:e2e": "TZ=UTC vitest **/*.spec.ts",
"test:ui": "TZ=UTC vitest --ui"
},
"dependencies": {
"date-fns": "^2.30.0",
"exponential-backoff": "^3.1.1",
"fast-jwt": "^3.1.1",
"ts-invariant": "^0.10.3",
"typical-fetch": "^2.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@bjerk/eslint-config": "^5.3.1",
"@simenandre/prettier": "^5.0.0",
"@tsconfig/esm": "^1.0.3",
"@tsconfig/node-lts": "^18.12.2",
"@tsconfig/strictest": "^2.0.1",
"@types/node": "^18",
"eslint": "^8.45.0",
"tsx": "^3.12.7",
"typescript": "^5.1.3",
"undici": "^5.28.2",
"vitest": "^0.34.0"
},
"keywords": [
"abax",
"abax-api",
"node",
"sdk"
],
"engines": {
"node": ">=18"
},
"exports": "./dist/main.js",
"packageManager": "pnpm@8.12.1",
"prettier": "@simenandre/prettier",
"volta": {
"node": "18.17.0"
}
}