voltcube 0.0.0-placeholder
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -0
- package/index.js +14 -0
- package/package.json +24 -0
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# voltcube
|
|
2
|
+
|
|
3
|
+
> Placeholder — the real package is coming soon.
|
|
4
|
+
|
|
5
|
+
VoltCube is a high-performance browser pivot table library powered by DuckDB-WASM in a Web Worker. The npm name is reserved while the codebase is finalized.
|
|
6
|
+
|
|
7
|
+
- Repository: https://github.com/voltcube/voltcube
|
|
8
|
+
- Engine package: [`@voltcube/core`](https://www.npmjs.com/package/@voltcube/core) (also placeholder)
|
|
9
|
+
- License: MIT
|
|
10
|
+
|
|
11
|
+
When the first real version ships, this placeholder will be superseded automatically (`npm install voltcube` will resolve to the real release).
|
package/index.js
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// VoltCube — high-performance browser pivot table.
|
|
2
|
+
// This is a placeholder release. The real package will land soon at:
|
|
3
|
+
// https://github.com/voltcube/voltcube
|
|
4
|
+
//
|
|
5
|
+
// Placeholder version: 0.0.0-placeholder
|
|
6
|
+
// Once the real release ships, `npm install voltcube` will resolve to that
|
|
7
|
+
// instead of this stub.
|
|
8
|
+
|
|
9
|
+
module.exports = {
|
|
10
|
+
__placeholder: true,
|
|
11
|
+
message:
|
|
12
|
+
'voltcube is reserved for the upcoming pivot-table package. ' +
|
|
13
|
+
'See https://github.com/voltcube/voltcube for status.',
|
|
14
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "voltcube",
|
|
3
|
+
"version": "0.0.0-placeholder",
|
|
4
|
+
"description": "VoltCube — high-performance browser pivot table powered by DuckDB-WASM. Coming soon.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"main": "index.js",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"pivot",
|
|
9
|
+
"pivot-table",
|
|
10
|
+
"duckdb",
|
|
11
|
+
"wasm",
|
|
12
|
+
"analytics",
|
|
13
|
+
"olap",
|
|
14
|
+
"data-grid"
|
|
15
|
+
],
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public"
|
|
18
|
+
},
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "https://github.com/voltcube/voltcube"
|
|
22
|
+
},
|
|
23
|
+
"homepage": "https://github.com/voltcube/voltcube"
|
|
24
|
+
}
|