-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.54 KB
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
{
"name": "@enderdash/client",
"version": "0.1.4",
"description": "Generated TypeScript client for the EnderDash HTTP API.",
"keywords": [
"enderdash",
"minecraft",
"server-management",
"api-client",
"typescript",
"trpc",
"openapi"
],
"homepage": "https://enderdash.com",
"type": "module",
"license": "MIT",
"author": {
"name": "EnderDash",
"url": "https://enderdash.com"
},
"packageManager": "bun@1.3.14",
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enderdash-com/enderdash-client.git"
},
"bugs": {
"url": "https://github.com/enderdash-com/enderdash-client/issues"
},
"files": [
"dist"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"check": "tsc --noEmit",
"generate": "bun scripts/generate.ts",
"pack:check": "bun pm pack --dry-run",
"prepack": "bun run build"
},
"dependencies": {
"@hey-api/client-fetch": "^0.13.1",
"@trpc/openapi": "11.17.0-alpha",
"superjson": "^2.2.6"
},
"devDependencies": {
"@hey-api/openapi-ts": "^0.99.0",
"@types/node": "^26.0.0",
"typescript": "^7.0.0"
},
"peerDependencies": {
"typescript": ">=5.8"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"publishConfig": {
"access": "public"
}
}