-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.44 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.44 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
76
77
78
79
80
81
82
83
84
85
{
"name": "@query-farm/vgi-rpc",
"version": "0.6.4",
"license": "Apache-2.0",
"homepage": "https://vgi-rpc-typescript.query.farm",
"repository": {
"type": "git",
"url": "https://github.com/Query-farm/vgi-rpc-typescript"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"bun": "./src/index.ts"
},
"./otel": {
"import": "./dist/otel.js",
"types": "./dist/otel.d.ts",
"bun": "./src/otel.ts"
},
"./s3": {
"import": "./dist/s3.js",
"types": "./dist/s3.d.ts",
"bun": "./src/s3.ts"
},
"./gcs": {
"import": "./dist/gcs.js",
"types": "./dist/gcs.d.ts",
"bun": "./src/gcs.ts"
}
},
"files": [
"dist",
"src"
],
"dependencies": {
"@query-farm/apache-arrow": "*",
"oauth4webapi": "^3.8.5"
},
"peerDependencies": {
"@opentelemetry/api": ">=1.4.0",
"@aws-sdk/client-s3": ">=3.0.0",
"@aws-sdk/s3-request-presigner": ">=3.0.0",
"@google-cloud/storage": ">=7.0.0"
},
"peerDependenciesMeta": {
"@opentelemetry/api": {
"optional": true
},
"@aws-sdk/client-s3": {
"optional": true
},
"@aws-sdk/s3-request-presigner": {
"optional": true
},
"@google-cloud/storage": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "^2.4.5",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/resources": "^2.6.0",
"@opentelemetry/sdk-metrics": "^2.6.0",
"@opentelemetry/sdk-trace-base": "^2.6.0",
"@opentelemetry/semantic-conventions": "^1.40.0",
"@aws-sdk/client-s3": "^3.750.0",
"@aws-sdk/s3-request-presigner": "^3.750.0",
"@google-cloud/storage": "^7.15.0",
"@types/bun": "latest"
},
"scripts": {
"build": "bun run build:types && bun run build:js",
"build:types": "bunx tsc -p tsconfig.build.json",
"build:js": "bun build ./src/index.ts --outdir dist --target node --format esm --sourcemap=external --external @query-farm/apache-arrow",
"postinstall": "cd node_modules/@query-farm/apache-arrow && node -e \"const fs=require('fs');const p=JSON.parse(fs.readFileSync('package.json','utf8'));p.main='src/Arrow.node.ts';fs.writeFileSync('package.json',JSON.stringify(p,null,2)+'\\n')\"",
"test": "bun test",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write ."
}
}