hyparquet/package.json

46 lines
1.0 KiB
JSON
Raw Normal View History

2023-12-29 17:37:37 +00:00
{
"name": "hyparquet",
2025-03-18 06:56:13 +00:00
"version": "1.9.1",
2023-12-29 17:37:37 +00:00
"description": "parquet file parser for javascript",
2024-12-17 17:25:54 +00:00
"author": "Hyperparam",
"homepage": "https://hyperparam.app",
2023-12-29 17:37:37 +00:00
"keywords": [
2024-12-17 17:25:54 +00:00
"hyparquet",
2023-12-29 17:37:37 +00:00
"parquet",
2024-12-17 17:25:54 +00:00
"parquetjs",
2024-01-05 09:39:59 +00:00
"parser",
"snappy",
"thrift"
2023-12-29 17:37:37 +00:00
],
"license": "MIT",
"repository": {
"type": "git",
2024-01-04 19:26:07 +00:00
"url": "git+https://github.com/hyparam/hyparquet.git"
2023-12-29 17:37:37 +00:00
},
2024-01-04 19:11:00 +00:00
"main": "src/hyparquet.js",
2023-12-29 17:37:37 +00:00
"files": [
2025-03-17 17:07:08 +00:00
"src",
"types"
2023-12-29 17:37:37 +00:00
],
"type": "module",
"types": "types/hyparquet.d.ts",
2023-12-29 17:37:37 +00:00
"scripts": {
"build:types": "tsc -p ./tsconfig.build.json",
2024-04-18 00:45:15 +00:00
"coverage": "vitest run --coverage --coverage.include=src",
2024-12-17 17:25:54 +00:00
"lint": "eslint",
2025-03-04 17:38:39 +00:00
"lint:fix": "eslint --fix",
"prepare": "npm run build:types",
2024-06-28 00:27:12 +00:00
"test": "vitest run"
2023-12-29 17:37:37 +00:00
},
"devDependencies": {
"@types/node": "22.13.10",
2025-03-17 17:07:08 +00:00
"@vitest/coverage-v8": "3.0.9",
"eslint": "9.22.0",
2025-03-17 17:07:08 +00:00
"eslint-plugin-jsdoc": "50.6.8",
"hyparquet-compressors": "1.1.1",
"typescript": "5.8.2",
"typescript-eslint": "8.27.0",
2025-03-17 17:07:08 +00:00
"vitest": "3.0.9"
2023-12-29 17:37:37 +00:00
}
}