mirror of
https://github.com/asadbek064/hyparquet-writer.git
synced 2025-12-05 23:31:54 +00:00
67 lines
1.4 KiB
JSON
67 lines
1.4 KiB
JSON
{
|
|
"name": "hyparquet-writer",
|
|
"version": "0.6.0",
|
|
"description": "Parquet file writer for JavaScript",
|
|
"author": "Hyperparam",
|
|
"homepage": "https://hyperparam.app",
|
|
"keywords": [
|
|
"ai",
|
|
"data",
|
|
"hyperparam",
|
|
"hyparquet",
|
|
"ml",
|
|
"parquet",
|
|
"snappy",
|
|
"thrift"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/hyparam/hyparquet-writer.git"
|
|
},
|
|
"main": "src/index.js",
|
|
"files": [
|
|
"src",
|
|
"types"
|
|
],
|
|
"type": "module",
|
|
"types": "types/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"browser": {
|
|
"types": "./types/index.d.ts",
|
|
"import": "./src/index.js"
|
|
},
|
|
"default": {
|
|
"types": "./types/node.d.ts",
|
|
"import": "./src/node.js"
|
|
}
|
|
},
|
|
"./src/*.js": {
|
|
"types": "./types/*.d.ts",
|
|
"import": "./src/*.js"
|
|
}
|
|
},
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"build:types": "tsc -p ./tsconfig.build.json",
|
|
"coverage": "vitest run --coverage --coverage.include=src",
|
|
"lint": "eslint",
|
|
"lint:fix": "eslint --fix",
|
|
"prepare": "npm run build:types",
|
|
"test": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"hyparquet": "1.17.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/eslint-parser": "7.28.0",
|
|
"@types/node": "24.0.10",
|
|
"@vitest/coverage-v8": "3.2.4",
|
|
"eslint": "9.30.1",
|
|
"eslint-plugin-jsdoc": "51.3.3",
|
|
"typescript": "5.8.3",
|
|
"vitest": "3.2.4"
|
|
}
|
|
}
|