-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
139 lines (139 loc) · 4.29 KB
/
Copy pathpackage.json
File metadata and controls
139 lines (139 loc) · 4.29 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "arrowbase",
"version": "0.1.1",
"private": false,
"description": "Columnar Arrow store with an @tanstack/db-compatible API.",
"keywords": [
"arrow",
"columnar",
"tanstack-db",
"local-first",
"sharedarraybuffer",
"reactive-query"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/natanelia/arrowbase.git"
},
"bugs": {
"url": "https://github.com/natanelia/arrowbase/issues"
},
"homepage": "https://natanelia.github.io/arrowbase/",
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./tanstack": {
"types": "./dist/tanstack.d.ts",
"import": "./dist/tanstack.js"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist/react.js"
},
"./arrow": {
"types": "./dist/arrow.d.ts",
"import": "./dist/arrow.js"
},
"./idb": {
"types": "./dist/idb.d.ts",
"import": "./dist/idb.js"
},
"./broadcast": {
"types": "./dist/broadcast.d.ts",
"import": "./dist/broadcast.js"
}
},
"files": [
"dist",
"README.md",
"MIGRATING.md",
"COMPATIBILITY.md",
"CHANGELOG.md",
"RELEASE_NOTES.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run -c vitest.config.ts",
"test:watch": "vitest -c vitest.config.ts",
"test:differential": "vitest run -c vitest.differential.config.ts",
"test:golden": "vitest run -c vitest.golden.config.ts",
"test:showcase-docs": "vitest run -c vitest.config.ts tests/showcase-docs.test.ts",
"test:public-api": "vitest run -c vitest.config.ts tests/public-api-contract.test.ts",
"verify:package-exports": "tsx scripts/verify-package-exports.ts",
"lint": "tsc --noEmit",
"bench": "node --expose-gc --import tsx bench/index.ts",
"bench:all": "tsx bench/all.ts",
"bench:ivm": "tsx bench/ivm-live.ts",
"bench:operations": "node --expose-gc --import tsx bench/query-operations.ts",
"bench:spatial": "node --expose-gc --import tsx bench/spatial.ts",
"bench:vs-tanstack": "node --expose-gc --import tsx bench/vs-tanstack.ts",
"release:verify": "node scripts/verify-release.mjs",
"release:pack": "pnpm build && pnpm pack --pack-destination .release",
"playground:build:pages": "pnpm --filter @arrowbase/showcase build:pages",
"release:tag": "git tag v$npm_package_version",
"prepublishOnly": "pnpm release:verify && pnpm check && pnpm build && pnpm verify:package-exports",
"check": "pnpm typecheck && pnpm test:public-api && pnpm test:differential && pnpm test:golden && pnpm test:showcase-docs && pnpm test",
"playground:dev": "pnpm --filter @arrowbase/showcase dev",
"playground:build": "pnpm --filter @arrowbase/showcase build",
"playground:test": "pnpm --filter @arrowbase/showcase test",
"playground:e2e": "pnpm --filter @arrowbase/showcase e2e",
"playground:typecheck": "pnpm --filter @arrowbase/showcase typecheck",
"playground:check": "pnpm playground:typecheck && pnpm playground:test && pnpm playground:build",
"bench:showcase": "pnpm --filter @arrowbase/showcase bench:report"
},
"engines": {
"node": ">=20"
},
"peerDependencies": {
"@tanstack/db": "^0.6.16",
"apache-arrow": "^19.0.0 || ^20.0.0 || ^21.0.0",
"react": "^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"@tanstack/db": {
"optional": true
},
"apache-arrow": {
"optional": true
},
"react": {
"optional": true
}
},
"devDependencies": {
"@tanstack/db": "^0.6.16",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.10.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"apache-arrow": "^21.1.0",
"fake-indexeddb": "^6.2.5",
"jsdom": "^25.0.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"tinybench": "^6.0.1",
"tsup": "^8.3.5",
"tsx": "^4.21.0",
"typescript": "^5.6.3",
"vitest": "^2.1.8"
},
"packageManager": "pnpm@10.26.2",
"dependencies": {
"@tanstack/db-ivm": "0.1.18",
"flatbush": "^4.5.1"
}
}