-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.45 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.45 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@bitofsky/databricks-sql",
"version": "1.0.5",
"description": "Databricks SQL client for Node.js - Direct REST API without SDK",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"build:tsc": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build:tsc && npm run build"
},
"keywords": [
"databricks",
"sql",
"rest-api",
"streaming",
"arrow",
"apache-arrow"
],
"author": "BumSeok Hwang <bitofsky@naver.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/bitofsky/databricks-sql.git"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@bitofsky/merge-streams": "1.1.0",
"stream-json": "1.9.1"
},
"devDependencies": {
"@aws-sdk/client-s3": "3.958.0",
"@aws-sdk/lib-storage": "3.958.0",
"@aws-sdk/s3-request-presigner": "3.958.0",
"@types/node": "24.0.2",
"@types/stream-json": "1.7.8",
"dotenv": "17.2.3",
"tsup": "8.5.1",
"typescript": "5.9.3",
"vitest": "4.0.16"
}
}