-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 KB
/
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
34
35
36
37
38
{
"name": "@riverfl0w/dune-client",
"version": "0.2.0",
"keywords": ["dune", "dune-analytics", "sdk", "client", "api", "typescript"],
"homepage": "https://github.com/Riverfl0w/dune-client",
"bugs": "https://github.com/Riverfl0w/dune-client/issues",
"license": "MIT",
"author": "Mathieu Bour <mathieu@riverflow.co> (https://github.com/mathieu-bour)",
"files": ["dist", "src"],
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"repository": "github:Riverfl0w/dune-client",
"scripts": {
"lint": "biome ci .",
"test": "vitest",
"build": "tsup",
"prepublish": "pnpm lint && pnpm build"
},
"dependencies": {
"zod": "^3.22.4"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@tsconfig/strictest": "^2.0.3",
"dotenv-flow": "^4.1.0",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
}
}