-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.65 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
{
"name": "@colql/colql",
"version": "0.7.0",
"description": "Memory-efficient in-memory columnar query engine for TypeScript",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts src/indexing/background/worker-entry.ts src/indexing/background/node-worker-executor.ts --format cjs,esm --dts src/index.ts --clean --splitting false",
"dev": "tsup src/index.ts src/indexing/background/worker-entry.ts src/indexing/background/node-worker-executor.ts --watch --splitting false",
"test": "vitest run",
"test:worker-runtime": "vitest run tests/worker-runtime-smoke.test.ts",
"test:types": "tsc --noEmit -p tsconfig.type-tests.json",
"check": "npm run build && npm run test:types && npm test",
"bench:codspeed": "vitest bench --run --config vitest.bench.config.mts",
"benchmark:memory": "node --expose-gc benchmarks/memory.mjs",
"benchmark:query": "node benchmarks/query.mjs",
"benchmark:indexed": "node benchmarks/indexed-query.mjs",
"benchmark:range": "node benchmarks/range-query.mjs",
"benchmark:optimizer": "node benchmarks/query-optimizer.mjs",
"benchmark:serialization": "node benchmarks/serialization.mjs",
"benchmark:array-comparison": "node --expose-gc benchmarks/array-comparison.mjs",
"benchmark:session-analytics": "node benchmarks/session-analytics.mjs",
"benchmark:background-indexing": "node benchmarks/background-indexing.mjs",
"benchmark:worker-runtime": "node benchmarks/worker-runtime.mjs",
"example:session-analytics": "esbuild examples/session-analytics.ts --bundle --platform=node --format=esm --alias:@colql/colql=./src/index.ts --outfile=/private/tmp/colql-session-analytics.mjs && node /private/tmp/colql-session-analytics.mjs",
"prepublishOnly": "npm run build",
"benchmark:physical-delete": "node --expose-gc benchmarks/physical-delete.mjs",
"benchmark:delete": "node --expose-gc benchmarks/delete.mjs"
},
"keywords": [
"columnar",
"in-memory",
"query",
"typescript",
"analytics",
"database"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/emremy/colql.git"
},
"bugs": {
"url": "https://github.com/emremy/colql/issues"
},
"homepage": "https://github.com/emremy/colql#readme",
"devDependencies": {
"@codspeed/vitest-plugin": "^5.4.0",
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.0",
"eslint": "^10.2.1",
"globals": "^17.5.0",
"prettier": "^3.8.3",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.1",
"vitest": "^4.1.5"
}
}