-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 938 Bytes
/
package.json
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
{
"name": "df.ts",
"version": "1.0.0",
"description": "Minimal Memory effecient DataFrame library in TypeScript",
"main": "index.js",
"scripts": {
"b": "npx tsc",
"re0": "node --max-old-space-size=49152 dist/examples/arrayOfObjects.js",
"re1": "node --max-old-space-size=30720 dist/examples/arrayOfObjectsStringDictionary.js",
"re2": "node --max-old-space-size=30720 dist/examples/arrayBuffer.js",
"re3": "node --max-old-space-size=30720 dist/examples/arrayBufferBetterTypes.js",
"re4": "node --max-old-space-size=30720 dist/examples/arrayBufferNullTracking.js",
"re5": "node --max-old-space-size=30720 dist/examples/polars.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@apache-arrow/ts": "^17.0.0",
"csv-parser": "^3.0.0",
"fast-csv": "^5.0.1",
"nodejs-polars": "^0.15.0",
"typescript": "^5.6.2"
},
"devDependencies": {
"@types/node": "^22.5.5"
}
}