-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
41 lines (41 loc) · 984 Bytes
/
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
{
"name": "puffer-contracts",
"type": "module",
"engines": {
"node": ">=20.5.1",
"npm": ">=9.8.0"
},
"version": "1.0.0",
"description": "Native Liquid Restaking Protocol",
"scripts": {
"codespell": "codespell ./mainnet-contracts && codespell ./l2-contracts && codespell ./partners/merkle-contracts",
"semgrep": "semgrep --config ./semgrep-rules/"
},
"keywords": [
"ethereum",
"puffer",
"puffer-finance",
"solidity",
"LRT",
"eigenlayer",
"restaking",
"liquid-staking"
],
"author": {
"name": "Puffer Finance",
"url": "https://puffer.fi"
},
"license": "ISC",
"private": true,
"workspaces": {
"packages": [
"mainnet-contracts",
"utility-scripts",
"l2-contracts",
"partners/merkle-contracts"
],
"nohoist": [
"**/*"
]
}
}