-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.3 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
{
"name": "@polywrap/nodes",
"version": "0.1.0",
"author": "nerfZael",
"license": "MIT",
"private": false,
"files": [
"/bin"
],
"repository": {
"type": "git",
"url": "https://github.com/polywrap/nodes"
},
"keywords": [
"polywrap",
"ipfs",
"persistence",
"wrap",
"ens",
"indexer",
"indexing",
"polywrapper",
"wrapper"
],
"scripts": {
"build": "yarn build:persistence && yarn build:ens-contenthash && yarn build:ens-text-record",
"build:persistence": "cd ./nodes/persistence-node && yarn build",
"build:ens-contenthash": "cd ./nodes/ens-contenthash-indexer-node && yarn build",
"build:ens-text-record": "cd ./nodes/ens-text-record-indexer && yarn build",
"install:ci": "yarn install:ci:persistence && yarn install:ci:ens-contenthash && yarn install:ci:ens-text-record",
"install:ci:persistence": "cd ./nodes/persistence-node && yarn install --nonInteractive --frozen-lockfile --prefer-offline",
"install:ci:ens-contenthash": "cd ./nodes/ens-contenthash-indexer-node && yarn install --nonInteractive --frozen-lockfile --prefer-offline",
"install:ci:ens-text-record": "cd ./nodes/ens-text-record-indexer && yarn install --nonInteractive --frozen-lockfile --prefer-offline"
},
"dependencies": {
},
"devDependencies": {
}
}