forked from duckdb/duckdb-wasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.06 KB
/
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
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
{
"name": "@duckdb/duckdb-wasm-shell",
"version": "1.11.0",
"description": "",
"author": "Andre Kohn <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/duckdb/duckdb-wasm.git"
},
"keywords": [
"sql",
"duckdb",
"relational",
"database",
"data",
"query",
"wasm",
"analytics",
"olap",
"arrow",
"parquet",
"json",
"csv"
],
"dependencies": {
"@duckdb/duckdb-wasm": "file:../duckdb-wasm",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"xterm-addon-web-links": "^0.9.0",
"xterm-addon-webgl": "^0.16.0"
},
"devDependencies": {
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-react": "^7.34.0",
"jasmine": "^5.1.0",
"jasmine-core": "^5.1.2",
"jasmine-spec-reporter": "^7.0.0",
"make-dir": "^4.0.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"wasm-pack": "^0.12.1"
},
"scripts": {
"install:wasmpack": "node ../../node_modules/wasm-pack/install.js",
"build:debug": "node bundle.mjs debug && tsc --emitDeclarationOnly",
"build:release": "node bundle.mjs release && tsc --emitDeclarationOnly",
"lint": "eslint src"
},
"files": [
"dist",
"!dist/types/test"
],
"main": "dist/shell.cjs",
"module": "dist/shell.mjs",
"types": "dist/shell.d.ts",
"jsdelivr": "dist/shell.cjs",
"unpkg": "dist/shell.mjs",
"sideEffects": false,
"exports": {
"./dist/shell_bg.wasm": "./dist/shell_bg.wasm",
"./dist/shell.js": "./dist/shell.js",
"./dist/shell.cjs": "./dist/shell.cjs",
"./dist/shell.mjs": "./dist/shell.mjs",
"./dist/shell": "./dist/shell.mjs",
".": {
"types": "./dist/shell.d.ts",
"import": "./dist/shell.mjs",
"require": "./dist/shell.cjs"
}
}
}