-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
146 lines (146 loc) · 3.86 KB
/
package.json
File metadata and controls
146 lines (146 loc) · 3.86 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "@sfpro/sdk",
"version": "0.1.9",
"description": "TypeScript SDK for Superfluid Protocol - stream money every second",
"keywords": [
"superfluid",
"ethereum",
"web3",
"defi",
"streaming",
"money",
"wagmi",
"viem"
],
"homepage": "https://github.com/superfluid-org/superfluid.pro/tree/main/sdk/package",
"bugs": {
"url": "https://github.com/superfluid-org/superfluid.pro/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/superfluid-org/superfluid.pro",
"directory": "sdk/package"
},
"license": "MIT",
"author": "Superfluid Foundation",
"sideEffects": false,
"type": "module",
"exports": {
"./abi": {
"types": "./dist/abi/index.d.ts",
"default": "./dist/abi/index.js"
},
"./abi/core": {
"types": "./dist/abi/core/index.d.ts",
"default": "./dist/abi/core/index.js"
},
"./abi/automation": {
"types": "./dist/abi/automation/index.d.ts",
"default": "./dist/abi/automation/index.js"
},
"./hook": {
"types": "./dist/hook/index.d.ts",
"default": "./dist/hook/index.js"
},
"./hook/core": {
"types": "./dist/hook/core/index.d.ts",
"default": "./dist/hook/core/index.js"
},
"./hook/automation": {
"types": "./dist/hook/automation/index.d.ts",
"default": "./dist/hook/automation/index.js"
},
"./action": {
"types": "./dist/action/index.d.ts",
"default": "./dist/action/index.js"
},
"./action/core": {
"types": "./dist/action/core/index.d.ts",
"default": "./dist/action/core/index.js"
},
"./action/automation": {
"types": "./dist/action/automation/index.d.ts",
"default": "./dist/action/automation/index.js"
},
"./abi/sup": {
"types": "./dist/abi/sup/index.d.ts",
"default": "./dist/abi/sup/index.js"
},
"./hook/sup": {
"types": "./dist/hook/sup/index.d.ts",
"default": "./dist/hook/sup/index.js"
},
"./action/sup": {
"types": "./dist/action/sup/index.d.ts",
"default": "./dist/action/sup/index.js"
},
"./util": {
"types": "./dist/util.d.ts",
"default": "./dist/util.js"
},
"./config": {
"types": "./dist/config.d.ts",
"default": "./dist/config.js"
},
"./constant": {
"types": "./dist/constant.d.ts",
"default": "./dist/constant.js"
}
},
"scripts": {
"build": "rimraf dist && tsc --removeComments --declaration false && tsc --emitDeclarationOnly",
"generate": "run-p generate:*",
"generate:abi": "TYPE=abi wagmi generate",
"generate:abi-automation": "TYPE=abi CATEGORY=automation wagmi generate",
"generate:abi-core": "TYPE=abi CATEGORY=core wagmi generate",
"generate:abi-sup": "TYPE=abi CATEGORY=sup wagmi generate",
"generate:action": "TYPE=action wagmi generate",
"generate:action-automation": "TYPE=action CATEGORY=automation wagmi generate",
"generate:action-core": "TYPE=action CATEGORY=core wagmi generate",
"generate:action-sup": "TYPE=action CATEGORY=sup wagmi generate",
"generate:hook": "TYPE=hook wagmi generate",
"generate:hook-automation": "TYPE=hook CATEGORY=automation wagmi generate",
"generate:hook-core": "TYPE=hook CATEGORY=core wagmi generate",
"generate:hook-sup": "TYPE=hook CATEGORY=sup wagmi generate",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@superfluid-finance/ethereum-contracts": "^1.14.1",
"@superfluid-finance/metadata": "^1.6.2",
"@types/node": "^24.10.9",
"@wagmi/cli": "^2.9.0",
"dotenv": "^17.2.3",
"npm-run-all": "^4.1.5",
"rimraf": "^6.1.2",
"typedoc": "^0.28.16",
"typescript": "^5.9.3",
"viem": "^2.44.4",
"vitest": "^4.0.18",
"wagmi": "^2.19.5"
},
"peerDependencies": {
"@wagmi/core": "^2",
"react": ">=18",
"viem": "^2",
"wagmi": "^2"
},
"peerDependenciesMeta": {
"@wagmi/core": {
"optional": true
},
"react": {
"optional": true
},
"viem": {
"optional": true
},
"wagmi": {
"optional": true
}
},
"packageManager": "pnpm@10.6.2",
"publishConfig": {
"access": "public"
}
}