-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.13 KB
/
package.json
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
{
"name": "@ensdomains/hardhat-chai-matchers-viem",
"type": "module",
"version": "0.0.8",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"typings": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"default": "./dist/esm/index.js"
},
"./behaviour": {
"types": "./dist/types/behaviour.d.ts",
"import": "./dist/esm/behaviour.js",
"default": "./dist/esm/behaviour.js"
},
"./utils": {
"types": "./dist/types/utils.d.ts",
"import": "./dist/esm/utils.js",
"default": "./dist/esm/utils.js"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"behaviour": [
"./dist/types/behaviour.d.ts"
],
"utils": [
"./dist/types/utils.d.ts"
]
}
},
"files": [
"dist/",
"src/",
"!src/**/*.test.ts",
"!src/test"
],
"scripts": {
"clean": "rm -rf ./dist",
"build:esm": "tsc --project tsconfig.build.json --module es2022 --outDir ./dist/esm && echo > ./dist/esm/package.json '{\"type\":\"module\",\"sideEffects\":false}'",
"build:types": "tsc --project tsconfig.build.json --module esnext --declarationDir ./dist/types --emitDeclarationOnly --declaration --declarationMap",
"build": "bun run clean && bun run build:esm && bun run build:types",
"prepublish": "bun run build",
"compile": "NODE_OPTIONS=\"--experimental-loader ts-node/esm/transpile-only\" hardhat compile",
"test": "NODE_OPTIONS=\"--experimental-loader ts-node/esm/transpile-only\" hardhat test",
"postinstall": "bunx patch-package"
},
"devDependencies": {
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-viem": "^2.0.1",
"@openzeppelin/contracts": "^5.0.2",
"@types/bun": "latest",
"@types/mocha": "^10.0.6",
"hardhat": "^2.22.3",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"viem": "^2.10.2"
},
"peerDependencies": {
"chai": "^5.1.1",
"viem": "^2.10.2",
"hardhat": "^2.22.3"
},
"dependencies": {
"@vitest/expect": "^2.0.0-beta.3"
}
}