-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 804 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 804 Bytes
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
{
"name": "@dokploy/sdk",
"version": "0.30.7",
"description": "TypeScript SDK for the Dokploy API",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"generate": "openapi-ts",
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "pnpm run build"
},
"keywords": [
"dokploy",
"sdk",
"api"
],
"author": "Dokploy",
"license": "ISC",
"packageManager": "pnpm@10.30.1",
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@hey-api/openapi-ts": "^0.97.1",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}