-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.18 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": "sablier-v2-exactly-protocl",
"description": "Custom scripts for $EXA streams",
"version": "1.0.0",
"author": {
"name": "Sablier Labs Ltd",
"url": "https://sablier.com"
},
"bugs": {
"url": "https://github.com/sablier-labs/sablier-v2-exactly-protocol/issues"
},
"devDependencies": {
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"solhint": "^3.6.2"
},
"homepage": "https://github.com/sablier-labs/sablier-v2-exactly-protocol#readme",
"keywords": [
"asset-streaming",
"blockchain",
"cryptoasset-streaming",
"cryptoassets",
"ethereum",
"foundry",
"money-streaming",
"real-time-finance",
"sablier",
"sablier-v2",
"smart-contracts",
"solidity",
"token-streaming"
],
"license": "GPL-3.0-or-later",
"private": true,
"repository": "github.com:sablier-labs/sablier-v2-exactly-protocol",
"scripts": {
"clean": "rimraf cache out",
"lint": "pnpm lint:sol && pnpm prettier:check",
"lint:sol": "forge fmt --check && pnpm solhint \"{script,src,test}/**/*.sol\"",
"prettier:check": "prettier --check \"**/*.{json,md,yml}\"",
"prettier:write": "prettier --write \"**/*.{json,md,yml}\""
}
}