hyparquet-writer/package.json

67 lines
1.4 KiB
JSON
Raw Normal View History

2025-03-20 19:21:52 +00:00
{
"name": "hyparquet-writer",
2025-12-04 04:08:12 +00:00
"version": "0.10.1",
2025-03-20 19:21:52 +00:00
"description": "Parquet file writer for JavaScript",
"author": "Hyperparam",
"homepage": "https://hyperparam.app",
"keywords": [
2025-04-11 08:41:56 +00:00
"ai",
"data",
2025-04-08 08:15:26 +00:00
"hyperparam",
2025-03-20 19:21:52 +00:00
"hyparquet",
2025-04-11 08:41:56 +00:00
"ml",
"parquet",
2025-04-08 08:15:26 +00:00
"snappy",
"thrift"
2025-03-20 19:21:52 +00:00
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hyparam/hyparquet-writer.git"
},
"main": "src/index.js",
"files": [
"src",
"types"
2025-03-20 19:21:52 +00:00
],
"type": "module",
2025-04-17 07:38:17 +00:00
"types": "types/index.d.ts",
"exports": {
".": {
"browser": {
2025-04-17 07:38:17 +00:00
"types": "./types/index.d.ts",
"default": "./src/index.js"
},
"default": {
"types": "./types/node.d.ts",
"default": "./src/node.js"
2025-04-17 07:38:17 +00:00
}
},
"./src/*.js": {
2025-04-17 07:38:17 +00:00
"types": "./types/*.d.ts",
"default": "./src/*.js"
}
},
2025-06-01 06:07:36 +00:00
"sideEffects": false,
2025-03-20 19:21:52 +00:00
"scripts": {
"build:types": "tsc -p ./tsconfig.build.json",
2025-04-21 02:38:45 +00:00
"coverage": "vitest run --coverage --coverage.include=src",
2025-03-20 19:21:52 +00:00
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepare": "npm run build:types",
2025-03-20 19:21:52 +00:00
"test": "vitest run"
},
2025-04-01 06:32:14 +00:00
"dependencies": {
2025-11-26 20:17:59 +00:00
"hyparquet": "1.22.1"
2025-04-01 06:32:14 +00:00
},
2025-03-20 19:21:52 +00:00
"devDependencies": {
2025-10-23 17:46:27 +00:00
"@babel/eslint-parser": "7.28.5",
2025-11-13 08:43:10 +00:00
"@types/node": "24.10.1",
2025-12-04 04:04:21 +00:00
"@vitest/coverage-v8": "4.0.15",
2025-11-13 08:43:10 +00:00
"eslint": "9.39.1",
2025-11-21 07:03:40 +00:00
"eslint-plugin-jsdoc": "61.4.1",
2025-10-18 20:39:35 +00:00
"typescript": "5.9.3",
2025-12-04 04:04:21 +00:00
"vitest": "4.0.15"
2025-03-20 19:21:52 +00:00
}
}