@hpcc-js/wasm-duckdb 1.3.0 → 1.5.0
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/dist/index.js +4 -4
- package/package.json +18 -19
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hpcc-js/wasm-duckdb",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "hpcc-js - WASM DuckDB",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -17,38 +17,37 @@
|
|
|
17
17
|
"types/**/*"
|
|
18
18
|
],
|
|
19
19
|
"scripts": {
|
|
20
|
-
"clean": "rimraf
|
|
20
|
+
"clean": "rimraf coverage build dist dist-test types",
|
|
21
21
|
"pack-duckdb-eh-worker-node": "npx -y mkdirp build && node ./utils/sfx-wasm.js ../../node_modules/@duckdb/duckdb-wasm/dist/duckdb-node-eh.worker.cjs > ./build/duckdb-node-eh.worker.ts",
|
|
22
22
|
"pack-duckdb-eh-worker": "npx -y mkdirp build && node ./utils/sfx-wasm.js ../../node_modules/@duckdb/duckdb-wasm/dist/duckdb-browser-eh.worker.js > ./build/duckdb-browser-eh.worker.ts",
|
|
23
23
|
"pack-duckdb-eh": "npx -y mkdirp build && node ./utils/sfx-wasm.js ../../node_modules/@duckdb/duckdb-wasm/dist/duckdb-eh.wasm > ./build/duckdb-eh.wasm.ts",
|
|
24
24
|
"pack-duckdb": "run-p pack-duckdb-eh pack-duckdb-eh-worker pack-duckdb-eh-worker-node",
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"build-dev": "run-p
|
|
31
|
-
"build": "npm-run-all --serial pack-duckdb --parallel
|
|
25
|
+
"gen-types": "tsc --project tsconfig.json --emitDeclarationOnly",
|
|
26
|
+
"gen-types-watch": "npm run gen-types -- --watch",
|
|
27
|
+
"bundle": "node esbuild.js",
|
|
28
|
+
"bundle-dev": "npm run bundle -- --development",
|
|
29
|
+
"bundle-watch": "npm run bundle-dev -- --watch",
|
|
30
|
+
"build-dev": "run-p gen-types bundle-dev",
|
|
31
|
+
"build": "npm-run-all --serial pack-duckdb --parallel gen-types bundle",
|
|
32
32
|
"lint-skypack": "npx -y @skypack/package-check",
|
|
33
|
-
"lint-eslint": "eslint src/**/*.ts",
|
|
33
|
+
"lint-eslint": "eslint src/**/*.ts tests/**/*.ts",
|
|
34
34
|
"lint": "run-p lint-eslint",
|
|
35
|
-
"test-
|
|
36
|
-
"test
|
|
37
|
-
"
|
|
35
|
+
"test-browser": "vitest run --project browser",
|
|
36
|
+
"test": "vitest run",
|
|
37
|
+
"coverage": "vitest run --coverage",
|
|
38
38
|
"update": "npx -y npm-check-updates -u -t minor",
|
|
39
39
|
"update-major": "npx -y npm-check-updates -u"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@duckdb/duckdb-wasm": "
|
|
42
|
+
"@duckdb/duckdb-wasm": "next",
|
|
43
|
+
"mkdirp": "3.0.1"
|
|
43
44
|
},
|
|
44
45
|
"keywords": [
|
|
45
|
-
"
|
|
46
|
+
"DuckDB",
|
|
46
47
|
"typescript",
|
|
47
48
|
"webassembly",
|
|
48
49
|
"wasm",
|
|
49
|
-
"
|
|
50
|
-
"neato",
|
|
51
|
-
"twopi"
|
|
50
|
+
"sql"
|
|
52
51
|
],
|
|
53
52
|
"author": "hpcc-systems",
|
|
54
53
|
"repository": {
|
|
@@ -57,5 +56,5 @@
|
|
|
57
56
|
},
|
|
58
57
|
"homepage": "https://hpcc-systems.github.io/hpcc-js-wasm/",
|
|
59
58
|
"license": "Apache-2.0",
|
|
60
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "4b279928d3cbcbb2cebc5c33226d15c1d6043966"
|
|
61
60
|
}
|