-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.07 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.07 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
{
"name": "typed-cdp-sql",
"version": "0.1.0",
"description": "TypeScript type inference and query builder for CDP Data API SQL queries",
"type": "module",
"module": "index.ts",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"bun": "./index.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./builder": {
"types": "./dist/src/builder/index.d.ts",
"bun": "./src/builder/index.ts",
"import": "./dist/src/builder/index.js",
"default": "./dist/src/builder/index.js"
}
},
"files": [
"src",
"dist",
"index.ts"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "bun test",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build"
},
"keywords": [
"cdp",
"coinbase",
"sql",
"typescript",
"type-inference",
"evm",
"blockchain"
],
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.29.4",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
}
}