-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 869 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 869 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
{
"name": "tcg-lightning-xmage-bridge",
"version": "0.0.1",
"description": "TypeScript client library for interacting with XMage servers",
"module": "src/index.ts",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "bun build src/index.ts --outdir dist --target node",
"typecheck": "tsc --noEmit",
"test": "bun test",
"prepare": "ts-patch install"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@bufbuild/protobuf": "^2.11.0",
"@types/bun": "latest",
"ts-patch": "^3.3.0",
"ts-proto": "^2.11.5"
},
"peerDependencies": {
"typescript": "~5.9.3"
},
"dependencies": {
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"typia": "^12.0.1"
}
}