forked from Consensys/linea-attestation-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.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
{
"name": "linea-attestation-registry",
"version": "0.0.1",
"description": "Core smart contracts to read and write attestations on Linea",
"keywords": [
"linea-attestation-registry",
"blockchain",
"attestation",
"ethereum",
"foundry",
"smart-contracts",
"solidity"
],
"repository": "github.com/Consensys/linea-attestation-registry",
"license": "MIT",
"author": "Consensys",
"files": [
"src"
],
"scripts": {
"lint": "eslint .",
"prepare": "husky install",
"prettier:check": "prettier --check \"**/*.{json,md,svg,yml,sol,js,ts,graphql}\"",
"prettier:write": "prettier --write \"**/*.{json,md,svg,yml,sol,js,ts,graphql}\""
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"typescript": "^5.2.2"
},
"pnpm": {
"overrides": {
"got@<11.8.5": ">=11.8.5",
"ejs@<3.1.7": ">=3.1.7",
"engine.io@>=5.1.0 <6.4.2": ">=6.4.2",
"semver@>=7.0.0 <7.5.2": ">=7.5.2",
"tough-cookie@<4.1.3": ">=4.1.3"
}
}
}