@flowtyio/flow-contracts 0.0.1 → 0.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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +17 -3
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # flow-contracts
2
2
 
3
3
  ```
4
- npm i @flowty/flow-contracts
4
+ npm i @flowtyio/flow-contracts
5
5
  ```
6
6
 
7
7
  This repository publishes common Flow contracts as an npm package so that they can be more easily consumed.
@@ -36,7 +36,7 @@ For example, here is how you might add `NonFungibleToken` to your flow.json :
36
36
  },
37
37
  "contracts": {
38
38
  "NonFungibleToken": {
39
- "source": "./node_modules/@flowty/flow-contracts/contracts/NonFungibleToken.cdc",
39
+ "source": "./node_modules/@flowtyio/flow-contracts/contracts/NonFungibleToken.cdc",
40
40
  "aliases": {
41
41
  "emulator": "0xf8d6e0586b0a20c7",
42
42
  "testnet": "0x631e88ae7f1d7c20",
@@ -83,7 +83,7 @@ you will need to:
83
83
  },
84
84
  "contracts": {
85
85
  "FungibleToken": {
86
- "source": "./node_modules/@flowty/flow-contracts/contracts/FungibleToken.cdc",
86
+ "source": "./node_modules/@flowtyio/flow-contracts/contracts/FungibleToken.cdc",
87
87
  "aliases": {
88
88
  "emulator": "0xee82856bf20e2aa6",
89
89
  }
package/package.json CHANGED
@@ -1,9 +1,23 @@
1
1
  {
2
2
  "name": "@flowtyio/flow-contracts",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "main": "index.json",
5
5
  "description": "An NPM package for common flow contracts",
6
- "author": "Flowty",
7
- "license": "MIT"
6
+ "author": "flowtyio",
7
+ "license": "MIT",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/Flowtyio/flow-contracts.git"
11
+ },
12
+ "keywords": [
13
+ "cadence",
14
+ "nft",
15
+ "NonFungibleToken",
16
+ "flow"
17
+ ],
18
+ "bugs": {
19
+ "issues": "https://github.com/Flowtyio/flow-contracts/issues"
20
+ },
21
+ "homepage": "https://github.com/Flowtyio/flow-contracts/blob/main/README.md"
8
22
  }
9
23