-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
36 lines (36 loc) · 1.11 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
{
"name": "@mydao/ens-l2-resolver",
"version": "0.0.2",
"description": "ENS identity L2-resolved",
"repository": "[email protected]:qd-qd/ens-l2-resolver.git",
"main": "index.js",
"author": "Nick Johnson <[email protected]>",
"contributors": [
"qdqd <[email protected]>"
],
"license": "MIT",
"workspaces": {
"packages": [
"packages/l1",
"packages/l2",
"packages/gateway",
"packages/client"
],
"nohoist": [
"**/tsdx",
"**/tsdx/**"
]
},
"private": true,
"scripts": {
"start:gateway": "yarn workspace @mydao/ens-l2-resolver-gateway start",
"start:client": "yarn workspace @mydao/ens-l2-resolver-client start",
"start:l1": "yarn workspace @mydao/ens-l2-resolver-l1 start",
"start:l2": "yarn workspace @mydao/ens-l2-resolver-l2 start",
"test": "yarn workspaces run test",
"lint": "yarn workspaces run lint",
"build": "yarn workspaces run build",
"docs": "typedoc --entryPointStrategy packages packages/server packages/ethers-ccip-read-provider",
"clean": "rm -fr node_modules && yarn workspaces run clean"
}
}