forked from paradigmxyz/rivet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.96 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
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "rivet",
"version": "0.0.8",
"private": true,
"extension": {
"name": "Rivet",
"description": "Developer Wallet & DevTools for Ethereum"
},
"scripts": {
"anvil": "anvil --fork-url https://cloudflare-eth.com",
"build": "tsc && bun run build:ds && vite build && bun run build:inpage",
"build:ds": "vite build -c src/design-system/vite.config.ts",
"build:inpage": "vite build -c vite.config.inpage.ts",
"clean": "rimraf dist",
"chrome": "web-ext run -t chromium --start-url \"http://localhost:5173\" --source-dir ./dist/dev",
"contracts:build": "forge build --config-path test/contracts/foundry.toml && bun scripts/generate-typed-artifacts.ts",
"contracts:deploy": "bun scripts/deploy-contracts.ts",
"dev": "cross-env NODE_ENV=development bun run build:inpage && vite & (sleep 1 && bun run chrome)",
"format": "biome format . --write",
"lint": "biome check .",
"lint:fix": "bun run lint --apply",
"preinstall": "bun scripts/preinstall.ts",
"postinstall": "patch-package",
"prepare": "bun run build:ds",
"symbols": "bun scripts/symbols.ts",
"sync": "git submodule init && git submodule update",
"typecheck": "tsc --noEmit",
"zip": "web-ext build --source-dir ./dist/build --artifacts-dir ./dist --filename extension.zip"
},
"dependencies": {
"@capsizecss/core": "^3.1.0",
"@capsizecss/vanilla-extract": "^1.0.0",
"@fastify/deepmerge": "^1.3.0",
"@lukeed/uuid": "^2.0.1",
"@openchainxyz/abi-guesser": "^1.0.2",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-form": "^0.0.3",
"@radix-ui/react-polymorphic": "^0.0.14",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@react-hook/resize-observer": "^1.2.6",
"@shazow/whatsabi": "^0.9.0",
"@tanstack/query-async-storage-persister": "5.4.3",
"@tanstack/react-query": "5.4.3",
"@tanstack/react-query-persist-client": "5.4.3",
"@tanstack/react-virtual": "3.0.0-beta.54",
"@total-typescript/ts-reset": "^0.5.1",
"@vanilla-extract/css": "^1.11.0",
"@vanilla-extract/css-utils": "^0.1.3",
"@vanilla-extract/dynamic": "^2.0.3",
"@vanilla-extract/sprinkles": "^1.6.0",
"abitype": "^0.9.8",
"chroma-js": "^2.4.2",
"clsx": "^1.2.1",
"ethers": "^6.7.1",
"eventemitter3": "^5.0.1",
"human-id": "^4.0.0",
"mipd": "^0.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-flatten-children": "^1.1.2",
"react-hook-form": "^7.44.2",
"react-intersection-observer": "^9.5.2",
"react-router": "^6.10.0",
"react-router-dom": "^6.10.0",
"remeda": "^1.14.0",
"sonner": "^0.7.2",
"use-sync-external-store": "^1.2.0",
"viem": "^1.10.12",
"zustand": "^4.3.8"
},
"devDependencies": {
"@biomejs/biome": "1.0.0",
"@samrum/vite-plugin-web-extension": "^4.1.0",
"@types/chroma-js": "^2.4.0",
"@types/chrome": "^0.0.244",
"@types/opentype.js": "^1.3.4",
"@types/qs": "^6.9.7",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"@types/use-sync-external-store": "^0.0.3",
"@types/webextension-polyfill": "^0.10.0",
"@types/which-pm-runs": "^1.0.0",
"@vanilla-extract/vite-plugin": "^3.8.0",
"@vitejs/plugin-react": "^4.0.0-beta.0",
"bun-types": "^1.0.1",
"cross-env": "^7.0.3",
"globby": "^13.2.2",
"opentype.js": "^1.3.4",
"patch-package": "^8.0.0",
"rimraf": "^5.0.1",
"simple-git-hooks": "^2.8.1",
"solmate": "^6.2.0",
"svg-path-commander": "^2.0.5",
"typescript": "^5.0.4",
"vite": "^4.3.0",
"vite-plugin-crx-hot-reload": "^1.0.4",
"vite-tsconfig-paths": "^4.2.0",
"web-ext": "^7.6.1",
"webextension-polyfill": "^0.10.0",
"which-pm-runs": "^1.1.0"
},
"simple-git-hooks": {
"pre-commit": "bun run format && bun run lint:fix"
}
}