-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.26 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@trufnetwork/evm-contracts",
"version": "0.1.0-beta",
"private": false,
"description": "Truf Network EVM attestation helpers (Solidity + TypeScript)",
"repository": {
"type": "git",
"url": "https://github.com/trufnetwork/evm-contracts"
},
"homepage": "https://github.com/trufnetwork/evm-contracts#readme",
"scripts": {
"run:direct": "deno run --no-prompt --allow-net deno-src/source.ts",
"clean": "rm -rf dist",
"build": "tsc -p tsconfig.build.json",
"prepare": "pnpm run build",
"test": "hardhat test test/attestation/TrufAttestation.test.ts test/attestation/TrufAttestationConsumer.test.ts"
},
"dependencies": {
"@chainlink/functions-toolkit": "0.3.2",
"ethers": "6.13.4",
"ethers-v5": "npm:ethers@^5.7.2",
"inquirer": "12.2.0"
},
"devDependencies": {
"@chainlink/contracts": "1.3.0",
"@nomicfoundation/hardhat-chai-matchers": "2.0.8",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-ignition": "^0.15.8",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/contracts": "5.1.0",
"@openzeppelin/contracts-upgradeable": "5.1.0",
"@openzeppelin/hardhat-upgrades": "3.6.0",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "7.1.2",
"@types/inquirer": "^9.0.7",
"@types/mocha": "^10.0.10",
"@types/node": "20.11.18",
"chai": "4.3.7",
"chai-as-promised": "7.1.2",
"dotenv": "16.4.5",
"hardhat": "2.22.16",
"hardhat-switch-network": "1.1.1",
"mocha": "^11.7.4",
"prettier": "^3.3.3",
"semver": "^7.7.3",
"solidity-coverage": "^0.8.0",
"ts-node": "10.9.2",
"tsx": "^4.19.2",
"typescript": "5.6.3",
"vite": "6.0.3",
"vitest": "2.1.8"
},
"files": [
"dist",
"contracts/attestation/TrufAttestation.sol",
"docs/AttestationLibrary.md",
"README.md",
"LICENSE"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./contracts/attestation/TrufAttestation.sol": "./contracts/attestation/TrufAttestation.sol"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
}
}