generated from PaulRBerg/foundry-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.55 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.55 KB
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
50
51
52
53
54
55
56
{
"name": "lockup-integration-template",
"description": "Template for making on-chain integrations with Sablier Lockup",
"version": "1.0.0",
"author": {
"name": "Sablier Labs Ltd",
"url": "https://sablier.com"
},
"bugs": {
"url": "https://github.com/sablier-labs/lockup-integration-template/issues"
},
"dependencies": {
"@openzeppelin/contracts": "5.3.0",
"@prb/math": "4.1.0",
"@sablier/lockup": "3.0.1"
},
"devDependencies": {
"forge-std": "github:foundry-rs/forge-std#v1.10.0",
"prettier": "^3.5",
"solhint": "^6.0"
},
"homepage": "https://github.com/sablier-labs/lockup-integration-template#readme",
"keywords": [
"blockchain",
"cryptoasset-streaming",
"cryptoassets",
"ethereum",
"evm",
"foundry",
"money-streaming",
"real-time-finance",
"sablier",
"sablier-lockup",
"smart-contracts",
"solidity",
"token-distribution",
"token-streaming",
"token-vesting",
"vesting",
"web3"
],
"license": "GPL-3.0-or-later",
"private": true,
"repository": "github.com:sablier-labs/lockup-integration-template",
"scripts": {
"clean": "rm -rf cache out",
"build": "forge build",
"forge-check": "forge fmt --check",
"forge-write": "forge fmt",
"lint": "bun run lint:sol && bun run prettier:check",
"lint:sol": "bun run forge-check && bun solhint \"{script,src,test}/**/*.sol\"",
"prettier:check": "prettier --check \"**/*.{json,md,yml}\"",
"prettier:write": "prettier --write \"**/*.{json,md,yml}\"",
"test": "forge test"
}
}