forked from family/connectkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.79 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
{
"name": "family-connectkit",
"version": "0.0.0",
"description": "Family ConnectKit.",
"main": "packages/connectkit/src/index.ts",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"dev:connectkit": "yarn workspace connectkit run dev",
"dev:connectkit-next-siwe": "yarn workspace connectkit-next-siwe run dev",
"dev:cra": "yarn workspace cra run dev",
"dev:nextjs": "yarn workspace nextjs run dev",
"dev:nextjs-siwe": "yarn workspace nextjs-siwe run dev",
"dev:vite": "yarn workspace vite run dev",
"dev:testbench": "yarn workspace testbench run dev",
"build": "yarn workspace connectkit run build && cp README.md packages/connectkit/README.md",
"build:connectkit-next-siwe": "yarn workspace connectkit-next-siwe run build",
"build:cra": "yarn build && yarn workspace cra build",
"build:nextjs": "yarn build && yarn workspace nextjs build",
"build:nextjs-siwe": "yarn build && yarn workspace nextjs-siwe build",
"build:vite": "yarn build && yarn workspace vite build",
"build:testbench": "yarn build && yarn build:connectkit-next-siwe && yarn workspace testbench build",
"build:ci": "yarn workspaces foreach -R run build",
"lint:ci": "yarn workspaces foreach -R run lint"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rollup": "^2.67.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.0",
"rollup-plugin-visualizer": "^5.5.4",
"tslib": "^1.9.3",
"typescript-plugin-styled-components": "^2.0.0",
"viem": "^1.0.0",
"wagmi": "^1.1.1"
},
"packageManager": "[email protected]",
"dependencies": {
"@changesets/cli": "^2.24.4"
}
}