-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"type": "module",
"name": "@metrom-xyz/contracts",
"version": "0.38.0",
"description": "Smart contracts for Metrom.",
"author": "Federico Luzzi <[email protected]>",
"license": "GPL-3.0-or-later",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": "./dist/index.js",
"./abis/Metrom.json": "./dist/abis/Metrom.json",
"./abi": "./dist/gen/abi.js"
},
"files": [
"./dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "forge fmt --check && prettier --check .",
"format": "forge fmt && prettier --write .",
"lint:commit-message": "commitlint -e",
"prepare": "husky",
"build": "node ./build.js",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"viem": "^2.21.10"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
}
}