-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.33 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
{
"name": "examples",
"description": "Solidity examples for on-chain interaction with Sablier V2",
"version": "1.0.0",
"author": {
"name": "Sablier Labs Ltd",
"url": "https://sablier.com"
},
"bugs": {
"url": "https://github.com/sablier-labs/examples/issues"
},
"devDependencies": {
"forge-std": "github:foundry-rs/forge-std#v1.8.1",
"prettier": "^2.8.8",
"solhint": "^4.0.0"
},
"dependencies": {
"@openzeppelin/contracts": "5.0.2",
"@prb/math": "4.0.3",
"@sablier/v2-core": "1.2.0",
"@sablier/v2-periphery": "1.2.0"
},
"homepage": "https://github.com/sablier-labs/examples#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/examples",
"scripts": {
"clean": "rm -rf cache out",
"lint": "bun run lint:sol && bun run prettier:check",
"lint:sol": "forge fmt --check && bun solhint \"{script,src,test}/**/*.sol\"",
"prettier:check": "prettier --check \"**/*.{json,md,yml}\"",
"prettier:write": "prettier --write \"**/*.{json,md,yml}\""
}
}