-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.31 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
{
"name": "@tembo-io/api-client",
"version": "0.0.4",
"description": "The Typescript client for connecting to Tembo Cloud's platform API",
"homepage": "https://github.com/tembo-io/api-client-typescript/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/tembo/api-client-typescript"
},
"license": "MIT",
"author": {
"name": "Darren Baldwin",
"email": "[email protected]"
},
"type": "module",
"main": "./lib/index.js",
"files": [
"lib/",
"package.json",
"LICENSE.md",
"README.md"
],
"scripts": {
"build": "tsup",
"format": "prettier .",
"lint": "eslint . --max-warnings 0",
"openapi-ts": "openapi-ts",
"tsc": "tsc"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"@hey-api/client-fetch": "^0.5.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@hey-api/openapi-ts": "^0.58.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.1",
"eslint": "^9.16.0",
"eslint-plugin-n": "^17.14.0",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1",
"prettier-plugin-curly": "^0.3.1",
"prettier-plugin-packagejson": "^2.5.6",
"prettier-plugin-sh": "^0.14.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
},
"engines": {
"node": ">=18.3.0"
},
"volta": {
"node": "18.19.0"
}
}