-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 994 Bytes
/
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
{
"name": "@session.js/bun-network-remote",
"version": "1.0.8",
"author": "Viktor Shchelochkov <[email protected]> (https://hloth.dev)",
"repository": {
"type": "git",
"url": "git+https://github.com/sessionjs/bun-network-remote.git"
},
"main": "dist/bun.js",
"type": "module",
"types": "dist/index.d.ts",
"browser": "dist/browser.js",
"peerDependencies": {
"typescript": "^5.0.0"
},
"bugs": {
"url": "https://github.com/sessionjs/bun-network-remote/issues"
},
"description": "Bun.sh network connector wrapping arouund @session.js/bun-network",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"homepage": "https://github.com/sessionjs/bun-network-remote#readme",
"scripts": {
"build": "rm -rf dist && tsc --project tsconfig.build.json && cp src/index.d.ts dist/index.d.ts"
},
"dependencies": {
"@session.js/bun-network": "^1.0.10",
"@session.js/errors": "^1.0.9",
"@session.js/types": "^1.0.6",
"zod": "^3.23.8"
}
}