-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.51 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.51 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@ethui/extension",
"version": "1.11.0",
"description": "Companion extension for ethui",
"homepage": "https://ethui.dev",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "yarn dev:chrome & yarn dev:firefox",
"dev:chrome": "tsx ./scripts/build.ts --target chrome-dev",
"dev:firefox": "tsx ./scripts/build.ts --target firefox-dev",
"watch:chrome": "tsx watch --include src --include manifest --include 'vite/*.ts' --include package.json ./scripts/build.ts --target chrome-dev",
"watch:firefox": "tsx watch --include src --include manifest --include 'vite/*.ts' --include package.json ./scripts/build.ts --target firefox-dev",
"build": "tsx ./scripts/build.ts \"$@\"",
"lint": "yarn lint:biome && yarn lint:tsc && yarn lint:unused",
"lint:biome": "biome check .",
"lint:tsc": "tsc --noEmit",
"lint:unused": "ts-unused-exports tsconfig.json --ignoreFiles='vite/.*.ts'",
"fix": "biome check --write ."
},
"dependencies": {
"@devtools-ds/object-inspector": "^1.2.1",
"@devtools-ds/table": "^1.2.1",
"@ethui/ui": "^0.0.141",
"@fontsource/source-code-pro": "^5.2.5",
"@lukeed/uuid": "^2.0.1",
"@metamask/eth-json-rpc-middleware": "^23.0.0",
"@metamask/json-rpc-engine": "^10.2.0",
"@metamask/json-rpc-middleware-stream": "^8.0.8",
"@metamask/post-message-stream": "^10.0.0",
"@metamask/utils": "^11.9.0",
"eth-json-rpc-filters": "^6.0.1",
"eth-rpc-errors": "^4.0.3",
"eventemitter3": "^5.0.1",
"loglevel": "^1.9.2",
"mipd": "^0.0.7",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"stream": "^0.0.3",
"tailwindcss": "^4.1.5",
"viem": "^2.44.4",
"webextension-polyfill": "^0.12.0",
"websocket-ts": "^2.2.1",
"zustand": "^5.0.5"
},
"devDependencies": {
"@biomejs/biome": "^2.3.1",
"@tailwindcss/vite": "^4.2.0",
"@types/chrome": "^0.1.0",
"@types/json-merge-patch": "^1.0.0",
"@types/node": "^22.14.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@types/webextension-polyfill": "^0.12.3",
"@types/yargs": "^17.0.33",
"autoprefixer": "^10.4.21",
"crx": "^5.0.1",
"json-merge-patch": "^1.0.2",
"json5": "^2.2.3",
"postcss": "^8.5.6",
"ts-node": "^10.9.2",
"ts-unused-exports": "^11.0.1",
"tsx": "^4.21.0",
"typescript": "5.9.2",
"vite": "^7.3.0",
"vite-plugin-node-polyfills": "^0.25.0",
"vite-tsconfig-paths": "^6.1.0",
"web-ext": "^9.2.0",
"yargs": "^18.0.0"
},
"packageManager": "yarn@4.12.0"
}