@trustvc/trustvc 1.6.0-alpha.2 → 1.6.0-alpha.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,6 +1,6 @@
1
1
  {
2
2
  "name": "@trustvc/trustvc",
3
- "version": "1.6.0-alpha.2",
3
+ "version": "1.6.0-alpha.3",
4
4
  "description": "TrustVC library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -10,6 +10,10 @@
10
10
  ],
11
11
  "scripts": {
12
12
  "test": "npx vitest --run --test-timeout=15000",
13
+ "test:e2e": "concurrently -k \"npm run e2e:node\" \"npm run wait-and-test\"",
14
+ "e2e:node": "npx hardhat node",
15
+ "wait-and-test": "wait-on tcp:8545 && npm run e2e:test",
16
+ "e2e:test": "npx hardhat test src/__tests__/e2e/**/*.test.ts --network hardhat",
13
17
  "type-check": "tsc --noEmit",
14
18
  "lint": "npx eslint . --color --format=table --max-warnings=0",
15
19
  "lint:fix": "npx eslint . --fix",
@@ -131,13 +135,18 @@
131
135
  "@commitlint/config-conventional": "^19.8.0",
132
136
  "@commitlint/config-nx-scopes": "^19.8.0",
133
137
  "@commitlint/prompt": "^19.8.0",
138
+ "@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
139
+ "@nomiclabs/hardhat-ethers": "^2.2.3",
140
+ "@openzeppelin/contracts": "^5.3.0",
134
141
  "@semantic-release/changelog": "^6.0.3",
135
142
  "@semantic-release/git": "^10.0.1",
136
143
  "@semantic-release/npm": "^9.0.2",
137
144
  "@types/conventional-commits-parser": "^5.0.1",
138
145
  "@types/lodash": "^4.17.16",
146
+ "@types/mocha": "^10.0.10",
139
147
  "@types/node": "^18.19.86",
140
148
  "@vitest/coverage-v8": "^1.6.1",
149
+ "concurrently": "^9.2.0",
141
150
  "cpy": "^11.1.0",
142
151
  "dotenv": "^16.5.0",
143
152
  "eslint": "^9.25.1",
@@ -149,17 +158,20 @@
149
158
  "eslint-plugin-promise": "^7.2.1",
150
159
  "eth-testing": "^1.14.0",
151
160
  "execa": "^9.5.2",
161
+ "hardhat": "^2.25.0",
152
162
  "husky": "^9.1.7",
153
163
  "lint-staged": "^15.5.1",
154
164
  "prettier": "^3.5.3",
155
165
  "rimraf": "^5.0.10",
156
166
  "semantic-release": "^20.1.3",
157
167
  "ts-node": "^10.9.2",
168
+ "tsconfig-paths": "^4.2.0",
158
169
  "tsup": "^8.4.0",
159
170
  "typescript": "^5.8.3",
160
171
  "typescript-eslint": "^8.31.0",
161
172
  "vite-plugin-dts": "^3.9.1",
162
- "vitest": "^1.6.1"
173
+ "vitest": "^1.6.1",
174
+ "wait-on": "^8.0.3"
163
175
  },
164
176
  "overrides": {
165
177
  "ethers": "^5.8.0"