-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 916 Bytes
/
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
{
"name": "@bitte/core",
"version": "1.0.0",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"build": "bun run --cwd packages/agent-sdk build",
"tokenMap": "bun run scripts/genTokenMap.ts",
"lint": "prettier --check {scripts,packages}/**/* && eslint packages/",
"fmt": "prettier --write {scripts,packages}/**/* && eslint packages/ --fix",
"test": "jest"
},
"devDependencies": {
"@duneanalytics/client-sdk": "^0.2.5",
"@types/bun": "latest",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"csv-parser": "^3.2.0",
"dotenv": "^16.4.7",
"eslint": "^9.19.0",
"jest": "^29.7.0",
"next": "^15.1.6",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3",
"viem": "^2.22.17"
}
}