-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.16 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
66
67
68
69
70
71
72
73
74
75
{
"name": "aws-athena-node-client",
"version": "5.0.0.alpha0",
"keywords": [
"amazon web services",
"athena",
"athena-client",
"aws",
"node",
"nodejs",
"query",
"typescript"
],
"homepage": "https://github.com/avegao/aws-athena-node-client",
"bugs": "https://github.com/avegao/aws-athena-node-client/issues",
"license": "MIT",
"author": "Álvaro de la Vega Olmedilla <alvarodlvo@gmail.com>",
"repository": {
"type": "git",
"url": "git@github.com:avegao/aws-athena-node-client.git"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"benchmark:parse": "vitest run --config vitest.perf.config.ts",
"build": "rslib build",
"check": "biome check --write",
"dev": "rslib build --watch",
"test": "vitest run",
"coverage": "vitest run --coverage",
"prepublish": "rslib build",
"format": "oxfmt --write . && oxlint --fix --import-plugin .",
"format:check": "oxfmt --check .",
"lint": "oxlint --import-plugin ."
},
"dependencies": {
"destr": "^2.0.3",
"es-toolkit": "^1.46.1",
"pg-promise": "^11.8.0"
},
"devDependencies": {
"@aws-sdk/client-athena": "^3.600.0",
"@aws-sdk/client-s3": "^3.600.0",
"@aws-sdk/s3-request-presigner": "^3.600.0",
"@rslib/core": "^0.4.1",
"@types/node": "^20.14.6",
"@vitest/coverage-v8": "^1.6.0",
"lint-staged": "^17.0.2",
"oxfmt": "^0.48.0",
"oxlint": "^1.63.0",
"typescript": "^6.0.3",
"vitest": "^1.6.0"
},
"peerDependencies": {
"@aws-sdk/client-athena": "^3.533.0",
"@aws-sdk/client-s3": "^3.533.0",
"@aws-sdk/s3-request-presigner": "^3.533.0"
},
"engines": {
"bun": ">=1.1.0",
"node": ">=24.0.0"
}
}