-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.62 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.62 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
78
79
80
81
82
83
{
"name": "@concero/contract-utils",
"version": "1.0.0",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/types/src/index.d.ts",
"exports": {
".": {
"types": "./dist/types/src/index.d.ts",
"require": "./dist/index.cjs.js",
"import": "./dist/index.esm.js"
},
"./types": {
"types": "./dist/types/src/types/index.d.ts"
}
},
"files": [
"dist"
],
"license": "MIT",
"bugs": {
"email": "security@concero.io",
"url": "https://github.com/concero/contract-utils/issues"
},
"homepage": "https://concero.io",
"author": "Concero",
"description": "",
"keywords": [
"concero"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build:cjs": "esbuild ./src/index.ts --bundle --platform=node --format=cjs --sourcemap --external:viem --external:ethers --external:hardhat --external:hardhat-deploy --external:@concero/concero-networks --external:usb --external:@trezor/connect --outfile=dist/index.cjs.js",
"build:esm": "esbuild ./src/index.ts --bundle --platform=node --format=esm --sourcemap --external:viem --external:ethers --external:hardhat --external:hardhat-deploy --external:@concero/concero-networks --outfile=dist/index.esm.js",
"build": "npm run build:types && npm run build:cjs && npm run build:esm",
"build:types": "tsc --project tsconfig.json",
"lint": "eslint --config .eslint.config.mjs",
"format": "prettier --config .prettierrc.json --write **/*.{ts,json} **/**/*.{ts,json}",
"check-updates": "npx npm-check-updates"
},
"peerDependencies": {
"ethers": "6.14.0",
"hardhat": "2.17.0",
"viem": "2.24.0",
"@trezor/connect": "9.7.1"
},
"peerDependenciesMeta": {
"@tenderly/hardhat-tenderly": {
"optional": true
},
"@trezor/connect": {
"optional": true
}
},
"devDependencies": {
"@chainlink/hardhat-chainlink": "0.0.4",
"@typechain/hardhat": "9.1.0",
"@types/node": "*",
"@types/prettier": "3.0.0",
"@typescript-eslint/eslint-plugin": "8.29.1",
"@typescript-eslint/parser": "8.29.1",
"esbuild": "0.25.2",
"eslint": "9.24.0",
"eslint-config-prettier": "10.1.2",
"eslint-plugin-prettier": "5.2.6",
"ethers": "6.13.4",
"hardhat": "2.17.4",
"hardhat-deploy": "1.0.4",
"hardhat-deploy-ethers": "0.4.2",
"husky": "9.1.7",
"prettier": "3.5.3",
"prettier-plugin-jsdoc": "1.3.2",
"prettier-plugin-organize-imports": "4.1.0",
"typescript": "5.8.3",
"@trezor/connect": "9.7.1",
"viem": "2.24.2"
},
"dependencies": {
"@concero/concero-networks": "https://github.com/concero/concero-networks"
}
}