-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 KB
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
40
41
42
43
{
"name": "hush",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "bun run dev:web",
"build": "bun run build:web",
"preview": "bun run preview:web",
"dev:web": "bunx --bun vite --force --port 3017 --strictPort",
"build:web": "bunx --bun vite build",
"preview:web": "bunx --bun vite preview --port 3017",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@rollup/rollup-darwin-x64": "^4.57.1",
"@types/bun": "latest",
"vite": "6.4.0",
"vite-plugin-node-polyfills": "^0.25.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@hinkal/common": "^0.2.22",
"assert": "^2.1.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.1",
"ethers": "5.7.2",
"events": "^3.3.0",
"figlet": "^1.10.0",
"http-browserify": "^1.7.0",
"https-browserify": "^1.0.0",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"url": "^0.11.4",
"util": "^0.12.5",
"vm-browserify": "^1.1.2"
}
}