@lukso/universalprofile-contracts 0.15.0-rc.5 → 0.15.1

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,6 @@
1
1
  {
2
2
  "name": "@lukso/universalprofile-contracts",
3
- "version": "0.15.0-rc.5",
3
+ "version": "0.15.1",
4
4
  "description": "Package for Universal Profile, an implementation of LSP0 ERC725 Account & LSP3 Profile Metadata standards combined together.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "",
@@ -14,38 +14,49 @@
14
14
  "EVM",
15
15
  "Solidity"
16
16
  ],
17
- "main": "./dist/index.cjs",
18
- "module": "./dist/index.mjs",
19
- "typings": "./dist/index.d.ts",
17
+ "files": [
18
+ "contracts/**/*.sol",
19
+ "!contracts/Mocks/**/*.sol",
20
+ "artifacts/*.json",
21
+ "compatibility-abis",
22
+ "dist"
23
+ ],
24
+ "main": "./dist/constants.cjs",
25
+ "module": "./dist/constants.mjs",
26
+ "typings": "./dist/constants.d.ts",
20
27
  "exports": {
21
28
  ".": {
22
- "require": "./dist/index.cjs",
23
- "import": "./dist/index.mjs",
24
- "types": "./dist/index.d.ts"
29
+ "require": "./dist/constants.cjs",
30
+ "import": "./dist/constants.mjs",
31
+ "types": "./dist/constants.d.ts"
32
+ },
33
+ "./constants": {
34
+ "require": "./dist/constants.cjs",
35
+ "import": "./dist/constants.mjs",
36
+ "types": "./dist/constants.d.ts"
37
+ },
38
+ "./abi": {
39
+ "require": "./dist/abi.cjs",
40
+ "import": "./dist/abi.mjs",
41
+ "types": "./dist/abi.d.ts"
25
42
  },
26
43
  "./artifacts/*": "./artifacts/*",
44
+ "./dist/*": "./dist/*",
27
45
  "./package.json": "./package.json"
28
46
  },
29
- "files": [
30
- "contracts/**/*.sol",
31
- "!contracts/Mocks/**/*.sol",
32
- "artifacts/*.json",
33
- "dist",
34
- "./README.md"
35
- ],
36
47
  "scripts": {
37
48
  "build": "hardhat compile --show-stack-traces",
38
49
  "build:types": "npx wagmi generate",
39
- "clean": "hardhat clean && rm -Rf dist/",
50
+ "clean": "hardhat clean && rm -Rf dist/ cache/ node_modules/ .turbo/ types/ typechain/ build/ artifacts/",
40
51
  "format": "prettier --write .",
41
52
  "lint": "eslint . --ext .ts,.js",
42
53
  "lint:solidity": "solhint 'contracts/**/*.sol' && prettier --check 'contracts/**/*.sol'",
43
- "package": "hardhat prepare-package"
54
+ "build:package": "hardhat prepare-package"
44
55
  },
45
56
  "dependencies": {
46
57
  "@erc725/smart-contracts": "^7.0.0",
47
58
  "@openzeppelin/contracts": "^4.9.3",
48
- "@lukso/lsp0-contracts": "~0.15.0-rc.5",
49
- "@lukso/lsp3-contracts": "~0.15.0-rc.5"
59
+ "@lukso/lsp0-contracts": "~0.15.0",
60
+ "@lukso/lsp3-contracts": "~0.15.0"
50
61
  }
51
62
  }