-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
50
51
{
"name": "incentivibe",
"description": "incentivibe v1 contracts",
"version": "1.0.0",
"author": {
"name": "IncentiVibe",
"url": "https://incentivibe.xyz"
},
"bugs": {
"url": "https://github.com/codenamejason/IncentiVibe-Contracts-v1/issues"
},
"devDependencies": {
"prettier": "^3.0.0",
"solhint": "^3.4.1"
},
"dependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@openzeppelin/contracts": "4.9.6",
"@prb/math": "4.0.1",
"@sablier/v2-core": "1.0.2",
"@sablier/v2-periphery": "1.0.3",
"prettier-package-json": "^2.8.0",
"prettier-plugin-solidity": "^1.1.3"
},
"homepage": "https://github.com/codenamejason/IncentiVibe-Contracts-v1",
"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:codenamejason/IncentiVibe-Contracts-v1",
"scripts": {
"clean": "rimraf cache out",
"lint": "bun run lint:sol",
"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}\""
}
}