@lukso/lsp11-contracts 0.1.5 → 0.1.7

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 +2 -2
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -10,11 +10,11 @@ npm install @lukso/lsp11-contracts
10
10
 
11
11
  ## Available Constants & Types
12
12
 
13
- The `@lukso/lsp11-contracts` npm package contains useful constants such as interface ID related to the LSP11 standard. You can import and access them as follows.
13
+ The `@lukso/lsp11-contracts` npm package contains useful constants such as interface IDs related to the LSP11 standard. You can import and access them as follows.
14
14
 
15
15
  In Javascript.
16
16
 
17
- ```js
17
+ ```javascript
18
18
  import { INTERFACE_ID_LSP11 } from "@lukso/lsp11-contracts";
19
19
  ```
20
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lukso/lsp11-contracts",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "Package for the LSP11 Social Recovery standard",
5
5
  "license": "Apache-2.0",
6
6
  "author": "",
@@ -26,19 +26,19 @@
26
26
  "typings": "./dist/constants.d.ts",
27
27
  "exports": {
28
28
  ".": {
29
+ "types": "./dist/constants.d.ts",
29
30
  "require": "./dist/constants.cjs",
30
- "import": "./dist/constants.mjs",
31
- "types": "./dist/constants.d.ts"
31
+ "import": "./dist/constants.mjs"
32
32
  },
33
33
  "./constants": {
34
+ "types": "./dist/constants.d.ts",
34
35
  "require": "./dist/constants.cjs",
35
- "import": "./dist/constants.mjs",
36
- "types": "./dist/constants.d.ts"
36
+ "import": "./dist/constants.mjs"
37
37
  },
38
38
  "./abi": {
39
+ "types": "./dist/abi.d.ts",
39
40
  "require": "./dist/abi.cjs",
40
- "import": "./dist/abi.mjs",
41
- "types": "./dist/abi.d.ts"
41
+ "import": "./dist/abi.mjs"
42
42
  },
43
43
  "./artifacts/*": "./artifacts/*",
44
44
  "./dist/*": "./dist/*",