forked from sablier-labs/evm-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.65 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.65 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
68
69
70
71
72
{
"name": "@sablier/lockup",
"description": "EVM smart contracts of the Sablier Lockup token distribution protocol",
"license": "SEE LICENSE IN LICENSE",
"version": "3.0.1",
"author": {
"name": "Sablier Labs Ltd",
"url": "https://sablier.com"
},
"bugs": {
"url": "https://github.com/sablier-labs/lockup/issues"
},
"dependencies": {
"@openzeppelin/contracts": "5.3.0",
"@prb/math": "4.1.0",
"@sablier/evm-utils": "1.0.2"
},
"devDependencies": {
"@sablier/devkit": "github:sablier-labs/devkit",
"forge-std": "github:foundry-rs/forge-std#v1.10.0",
"husky": "^9.1",
"lint-staged": "^16.1",
"prettier": "^3.5",
"solady": "0.0.208",
"solarray": "github:evmcheb/solarray#a547630",
"solhint": "^6.0"
},
"files": [
"artifacts",
"src",
"tests/utils",
"CHANGELOG.md",
"LICENSE.md",
"LICENSE-BUSL.md",
"LICENSE-GPL.md"
],
"homepage": "https://github.com/sablier-labs/lockup#readme",
"keywords": [
"blockchain",
"cryptoasset-streaming",
"cryptoassets",
"ethereum",
"evm",
"foundry",
"lockup",
"money-streaming",
"real-time-finance",
"sablier",
"sablier-lockup",
"smart-contracts",
"solidity",
"token-distribution",
"token-streaming",
"token-vesting",
"vesting",
"web3"
],
"peerDependencies": {
"@prb/math": "4.x.x"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sablier-labs/lockup.git"
},
"scripts": {
"prepack": "bun install --frozen-lockfile && bash ./scripts/bash/prepare-artifacts.sh",
"setup": "husky"
}
}