@lukso/lsp11-contracts 0.1.2 → 0.1.3

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,28 +1,9 @@
1
1
  {
2
2
  "name": "@lukso/lsp11-contracts",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Package for the LSP11 Social Recovery standard",
5
5
  "license": "Apache-2.0",
6
6
  "author": "",
7
- "main": "./dist/index.cjs",
8
- "module": "./dist/index.mjs",
9
- "typings": "./dist/index.d.ts",
10
- "exports": {
11
- ".": {
12
- "require": "./dist/index.cjs",
13
- "import": "./dist/index.mjs",
14
- "types": "./dist/index.d.ts"
15
- },
16
- "./artifacts/*": "./artifacts/*",
17
- "./package.json": "./package.json"
18
- },
19
- "files": [
20
- "contracts/**/*.sol",
21
- "!contracts/Mocks/**/*.sol",
22
- "artifacts/*.json",
23
- "dist",
24
- "./README.md"
25
- ],
26
7
  "keywords": [
27
8
  "LUKSO",
28
9
  "LSP",
@@ -33,6 +14,35 @@
33
14
  "EVM",
34
15
  "Solidity"
35
16
  ],
17
+ "files": [
18
+ "contracts/**/*.sol",
19
+ "!contracts/Mocks/**/*.sol",
20
+ "artifacts/*.json",
21
+ "dist"
22
+ ],
23
+ "main": "./dist/constants.cjs",
24
+ "module": "./dist/constants.mjs",
25
+ "typings": "./dist/constants.d.ts",
26
+ "exports": {
27
+ ".": {
28
+ "require": "./dist/constants.cjs",
29
+ "import": "./dist/constants.mjs",
30
+ "types": "./dist/constants.d.ts"
31
+ },
32
+ "./constants": {
33
+ "require": "./dist/constants.cjs",
34
+ "import": "./dist/constants.mjs",
35
+ "types": "./dist/constants.d.ts"
36
+ },
37
+ "./abi": {
38
+ "require": "./dist/abi.cjs",
39
+ "import": "./dist/abi.mjs",
40
+ "types": "./dist/abi.d.ts"
41
+ },
42
+ "./artifacts/*": "./artifacts/*",
43
+ "./dist/*": "./dist/*",
44
+ "./package.json": "./package.json"
45
+ },
36
46
  "scripts": {
37
47
  "build": "hardhat compile --show-stack-traces",
38
48
  "build:foundry": "forge build",
@@ -42,9 +52,9 @@
42
52
  "format": "prettier --write .",
43
53
  "lint": "eslint . --ext .ts,.js",
44
54
  "lint:solidity": "solhint 'contracts/**/*.sol' && prettier --check 'contracts/**/*.sol'",
45
- "test:foundry": "FOUNDRY_PROFILE=lsp11 forge test --no-match-test Skip -vvv",
55
+ "test:foundry": "FOUNDRY_PROFILE=lsp11 forge test -vvvv",
46
56
  "test:coverage": "hardhat coverage",
47
- "package": "hardhat prepare-package"
57
+ "build:package": "hardhat prepare-package"
48
58
  },
49
59
  "dependencies": {
50
60
  "@lukso/lsp25-contracts": "~0.15.0",