-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 968 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 968 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
{
"name": "@rootlessnet/sdk",
"version": "2.0.0",
"description": "RootlessNet SDK - Complete SDK for building on RootlessNet protocol",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"import": "./src/index.ts",
"types": "./src/index.ts"
}
},
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist --target node",
"test": "bun test",
"typecheck": "tsc --noEmit",
"dev": "bun run --watch src/index.ts"
},
"dependencies": {
"@rootlessnet/crypto": "workspace:*",
"@rootlessnet/identity": "workspace:*",
"@rootlessnet/content": "workspace:*",
"@rootlessnet/messaging": "workspace:*",
"@rootlessnet/storage": "workspace:*",
"@rootlessnet/network": "workspace:*",
"@rootlessnet/zone": "workspace:*"
},
"devDependencies": {
"typescript": "^5.6.0",
"@types/bun": "^1.1.0"
},
"files": ["dist", "src"],
"license": "MIT"
}