-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 906 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 906 Bytes
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": "bun@1.2.17",
"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",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"csv-parser": "^3.2.0",
"dotenv": "^16.5.0",
"eslint": "^9.29.0",
"jest": "^29",
"next": "^15.3.4",
"prettier": "^3.5.3",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3",
"viem": "^2.31.3"
}
}