forked from trustwallet/trust-web3-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.02 KB
/
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
35
36
37
{
"name": "@trustwallet/web3-provider",
"private": true,
"module": "index.ts",
"type": "module",
"scripts": {
"lint": "eslint .",
"build": "bun build --entrypoints ./index.ts --outdir ./dist --target browser",
"test:watch": "bun test --watch --only",
"test": "bun test",
"test:only": "bun run test --only",
"dev": "bun run ./scripts/link.ts",
"build:packages": "bun run ./scripts/build.ts",
"generate": "bun run ./scripts/generate.ts",
"rename": "bun run ./scripts/rename.ts",
"publish": "bun run ./scripts/publish.ts"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-node-resolve": "13.3.0",
"@types/bun": "latest",
"esbuild": "0.17.19",
"eslint": "9.x",
"globals": "^15.3.0",
"rollup": "2.78.0",
"rollup-plugin-esbuild": "4.9.3",
"simple-scaffold": "2.2.1",
"typescript": "^5.0.0",
"typescript-eslint": "^7.10.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}