forked from ZJONSSON/parquetjs
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.81 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@dsnp/parquetjs",
"description": "fully asynchronous, pure JavaScript implementation of the Parquet file format",
"main": "dist/parquet.js",
"types": "dist/parquet.d.ts",
"version": "1.9.0",
"homepage": "https://github.com/LibertyDSNP/parquetjs",
"license": "MIT",
"keywords": [
"dremel",
"parquet"
],
"repository": {
"type": "git",
"url": "git+https://github.com/frequency-chain/parquetjs.git"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1092.0",
"@types/node-int64": "0.4.32",
"@types/thrift": "0.10.17",
"@zenfs/core": "2.3.8",
"brotli-wasm": "3.0.1",
"bson": "6.10.4",
"int53": "1.0.0",
"long": "5.3.2",
"node-int64": "0.4.0",
"snappyjs": "0.7.0",
"thrift": "0.24.0",
"varint": "6.0.0",
"xxhash-wasm": "1.1.0"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@smithy/util-stream": "4.6.0",
"@types/chai": "5.2.3",
"@types/json-schema": "7.0.15",
"@types/mocha": "10.0.10",
"@types/node": "24.13.3",
"@types/sinon": "22.0.0",
"@types/varint": "6.0.3",
"assert": "2.1.0",
"aws-sdk-client-mock": "4.1.0",
"buffer": "6.0.3",
"chai": "5.3.3",
"core-js": "3.49.0",
"esbuild": "^0.28.1",
"eslint": "10.8.0",
"eslint-plugin-mocha": "11.2.0",
"events": "3.3.0",
"globals": "17.7.0",
"mocha": "12.0.0-rc.2",
"msw": "2.14.6",
"object-stream": "0.0.1",
"pako": "3.0.1",
"prettier": "3.8.3",
"process": "0.11.10",
"regenerator-runtime": "0.14.1",
"sinon": "22.1.0",
"sinon-chai": "4.0.1",
"stream-browserify": "3.0.0",
"tsx": "4.21.0",
"typescript": "5.9.3",
"typescript-eslint": "8.59.2"
},
"scripts": {
"build": "npm run build:node && npm run build:types",
"build:types": "tsc -p tsconfig.types.json && cp gen-nodejs/parquet_types.d.ts dist/gen-nodejs/parquet_types.d.ts",
"build:node": "tsc -b",
"build:browser": "node esbuild.mjs",
"type": "tsc --noEmit",
"lint": "eslint --quiet .",
"lint:fix": "eslint --fix .",
"format": "npx prettier . --write",
"test": "mocha 'test/{,!(browser)/**}/*.{js,ts}'",
"test:only": "mocha",
"clean": "rm -Rf ./dist",
"prepublishOnly": "npm run clean && npm run build:node && npm run build:types && npm run build:browser",
"thrift": "thrift -out gen-nodejs --gen js:ts parquet.thrift && thrift -out gen-nodejs --gen js:node parquet.thrift",
"serve": "node esbuild-serve.mjs"
},
"browser": {
"assert": "assert",
"events": "events",
"fs": "@zenfs/core",
"path": "path-browserify",
"stream": "readable-stream",
"thrift": "./node_modules/thrift/lib/nodejs/lib/thrift/browser.js",
"util": "util"
},
"engines": {
"node": ">=24.18.0"
},
"files": [
"dist/**/*",
"parquet.thrift",
"*.md",
"docs/**/*"
]
}