-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) 路 1.46 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) 路 1.46 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@sablier/flow",
"description": "EVM smart contracts of the Sablier Flow token distribution protocol",
"license": "SEE LICENSE IN LICENSE",
"version": "2.0.1",
"author": {
"name": "Sablier Labs Ltd",
"url": "https://sablier.com"
},
"bugs": {
"url": "https://github.com/sablier-labs/flow/issues"
},
"dependencies": {
"@openzeppelin/contracts": "5.3.0",
"@prb/math": "4.1.0",
"@sablier/evm-utils": "1.0.3"
},
"devDependencies": {
"@sablier/devkit": "^1.18.2",
"forge-std": "github:foundry-rs/forge-std#v1.10.0",
"husky": "^9.1",
"lint-staged": "^16.1",
"prettier": "^3.5",
"solhint": "^6.0"
},
"files": [
"artifacts",
"src",
"tests/utils",
"LICENSE.md",
"LICENSE-BUSL.md",
"LICENSE-GPL.md"
],
"keywords": [
"asset-distribution",
"asset-streaming",
"blockchain",
"crypto",
"cryptoasset-streaming",
"ethereum",
"forge",
"foundry",
"money-streaming",
"real-time-finance",
"payroll",
"sablier",
"smart-contracts",
"solidity",
"token-distribution",
"token-streaming",
"web3"
],
"peerDependencies": {
"@prb/math": "4.1.x"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sablier-labs/flow.git"
},
"scripts": {
"prepack": "bun install --frozen-lockfile && bash ./scripts/bash/prepare-artifacts.sh",
"setup": "husky"
}
}