Skip to content

Commit 3e706dd

Browse files
Add test/type dependencies and refresh bun.lock
Why: Provide required types and keep lockfile up to date to avoid install issues. Test plan: - bun install succeeds. - Type checks pass.
1 parent 9350fa9 commit 3e706dd

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

bun.lock

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,12 @@
88
"@openzeppelin/contracts": "^5.1.0",
99
"@superfluid-finance/ethereum-contracts": "^1.13.0",
1010
"@types/bun": "latest",
11+
"@types/chai": "^5.2.2",
12+
"@types/mocha": "^10.0.10",
13+
"chai": "^4.5.0",
1114
"dotenv": "^16.4.7",
1215
"hardhat": "^2.22.17",
16+
"typescript": "^5.9.2",
1317
"zx": "^8.3.0",
1418
},
1519
"peerDependencies": {
@@ -252,12 +256,14 @@
252256

253257
"@types/cacheable-request": ["@types/[email protected]", "", { "dependencies": { "@types/http-cache-semantics": "*", "@types/keyv": "^3.1.4", "@types/node": "*", "@types/responselike": "^1.0.0" } }, "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw=="],
254258

255-
"@types/chai": ["@types/chai@4.3.20", "", {}, "sha512-/pC9HAB5I/xMlc5FP77qjCnI16ChlJfW0tGa0IUcFn38VJrTV6DeZ60NU5KZBtaOZqjdpwTWohz5HU1RrhiYxQ=="],
259+
"@types/chai": ["@types/chai@5.2.2", "", { "dependencies": { "@types/deep-eql": "*" } }, "sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg=="],
256260

257261
"@types/chai-as-promised": ["@types/[email protected]", "", { "dependencies": { "@types/chai": "*" } }, "sha512-ThlRVIJhr69FLlh6IctTXFkmhtP3NpMZ2QGq69StYLyKZFp/HOp1VdKZj7RvfNWYYcJ1xlbLGLLWj1UvP5u/Gw=="],
258262

259263
"@types/concat-stream": ["@types/[email protected]", "", { "dependencies": { "@types/node": "*" } }, "sha512-eHE4cQPoj6ngxBZMvVf6Hw7Mh4jMW4U9lpGmS5GBPB9RYxlFg+CHaVN7ErNY4W9XfLIEn20b4VDYaIrbq0q4uA=="],
260264

265+
"@types/deep-eql": ["@types/[email protected]", "", {}, "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw=="],
266+
261267
"@types/form-data": ["@types/[email protected]", "", { "dependencies": { "@types/node": "*" } }, "sha512-8BSvG1kGm83cyJITQMZSulnl6QV8jqAGreJsc5tPu1Jq0vTSOiY/k24Wx82JRpWwZSqrala6sd5rWi6aNXvqcw=="],
262268

263269
"@types/glob": ["@types/[email protected]", "", { "dependencies": { "@types/minimatch": "*", "@types/node": "*" } }, "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA=="],
@@ -1588,6 +1594,8 @@
15881594

15891595
"@trufflesuite/chromafi/strip-ansi": ["[email protected]", "", { "dependencies": { "ansi-regex": "^3.0.0" } }, "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow=="],
15901596

1597+
"@types/chai-as-promised/@types/chai": ["@types/[email protected]", "", {}, "sha512-/pC9HAB5I/xMlc5FP77qjCnI16ChlJfW0tGa0IUcFn38VJrTV6DeZ60NU5KZBtaOZqjdpwTWohz5HU1RrhiYxQ=="],
1598+
15911599
"anymatch/picomatch": ["[email protected]", "", {}, "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="],
15921600

15931601
"bcrypt-pbkdf/tweetnacl": ["[email protected]", "", {}, "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA=="],

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,12 @@
66
"@openzeppelin/contracts": "^5.1.0",
77
"@superfluid-finance/ethereum-contracts": "^1.13.0",
88
"@types/bun": "latest",
9+
"@types/chai": "^5.2.2",
10+
"@types/mocha": "^10.0.10",
11+
"chai": "^4.5.0",
912
"dotenv": "^16.4.7",
1013
"hardhat": "^2.22.17",
14+
"typescript": "^5.9.2",
1115
"zx": "^8.3.0"
1216
},
1317
"peerDependencies": {

0 commit comments

Comments
 (0)