@relay-protocol/settlement-abis 2.0.1 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@relay-protocol/settlement-abis",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
+ "description": "Relay protocol contract ABIs",
4
5
  "main": "dist/index.js",
5
6
  "module": "dist/index.mjs",
6
7
  "types": "dist/index.d.ts",
@@ -10,12 +11,15 @@
10
11
  "require": "./dist/index.js"
11
12
  }
12
13
  },
14
+ "repository": "https://github.com/relayprotocol/settlement-protocol/packages/abis",
15
+ "author": "Uneven Labs",
16
+ "license": "MIT",
13
17
  "scripts": {
14
18
  "release": "npm publish",
15
19
  "clean": "rm -rf dist",
16
20
  "build:contracts": "yarn workspace @relay-settlement/smart-contracts build",
17
21
  "build:export-abis": "yarn workspace @relay-settlement/smart-contracts build:abis",
18
- "update": "yarn build:contracts && yarn build:export-abis",
22
+ "update": "yarn build:export-abis",
19
23
  "build:ts": "tsup src/index.ts --dts --format esm,cjs",
20
24
  "build": "yarn build:ts",
21
25
  "lint": "lint"
@@ -30,5 +34,8 @@
30
34
  "files": [
31
35
  "index.js",
32
36
  "dist"
33
- ]
37
+ ],
38
+ "publishConfig": {
39
+ "access": "public"
40
+ }
34
41
  }