-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 871 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 871 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": "dappnet",
"description": "",
"version": "0.5.8",
"license": "Apache-2.0",
"module": "src/mod.ts",
"type": "module",
"types": "target/esm/mod.d.ts",
"main": "target/esm/mod.d.ts",
"exports": {
".": {
"types": "./target/esm/mod.d.ts",
"import": "./target/esm/mod.js",
"require": "./target/esm/mod.js"
},
"./web": {
"types": "./target/esm/web/mod.d.ts",
"import": "./target/esm/web/mod.js",
"require": "./target/esm/web/mod.js"
}
},
"scripts": {
"build": "bun run script/build.ts",
"build:web": "bun run script/build_web.ts",
"publish:npm": "npm publish",
"publish:jsr": "npx jsr publish --allow-dirty"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@tokyo/reliq": "npm:@jsr/tokyo__reliq",
"ethers": "^6.13.5",
"tsup": "^8.4.0"
}
}