-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
31 lines (31 loc) · 1.22 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
{
"name": "parent",
"version": "0.0.0",
"main": "packages/widget/src/index.ts",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"dev": "yarn dev:widget & yarn dev:vite",
"dev:widget": "yarn workspace ens-widgets run dev",
"dev:vite": "yarn workspace vite-example run dev",
"dev:next": "yarn workspace next-example run dev",
"clean": "yarn workspaces run clean && rm -rf node_modules",
"build": "yarn workspace ens-widgets run build && yarn workspace vite-example run build",
"build:widget": "yarn workspace ens-widgets run build && cp README.md packages/widget/README.md",
"prepublish": "rm -rf packages/widget/dist && yarn build:widget && cd packages/widget && yarn pack --filename widget.tgz && mkdir temp && tar -xf widget.tgz -C temp && cd temp/package && ls -R && cd ../../ && rm widget.tgz && rm -rf temp"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.3.0",
"ethers": "^5.7.2",
"prettier": "^2.8.2",
"rollup": "^3.9.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.34.1",
"wagmi": "^0.10.10"
}
}