-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.37 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.37 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
{
"name": "buckdb",
"version": "0.1.22",
"type": "module",
"main": "./node.ts",
"module": "./node.ts",
"bin": {
"buckdb": "./cli.ts"
},
"exports": {
".": "./node.ts",
"./tf": "./tf.ts",
"./core": "./core.ts",
"./fn": "./fn.ts",
"./node": "./node.ts",
"./io": "./io.ts",
"./wasm": "./wasm.ts",
"./remote": "./remote.ts",
"./cli": "./cli.ts",
"./highlighter": "./src/highlighter.ts"
},
"files": [
".buck/*",
"src/*.ts",
"demo/dist/**",
"*.ts",
"!src/*.test.ts"
],
"scripts": {
"buckdb": "bun ./cli.ts",
"demo": "npm start --prefix demo",
"serve": "bun ./cli.ts",
"bump-jsr": "deno run --allow-all jsr:@kellnerd/bump --file jsr.json --commit ",
"bump-npm": "deno run --allow-all jsr:@kellnerd/bump --file package.json --commit ",
"patch": "bun run bump-jsr && bun run bump-npm && jsr publish --allow-slow-types --allow-dirty --token $JSR_TOKEN && npm publish",
"typecheck": "tsc --noEmit --skipLibCheck --resolveJsonModule --moduleResolution Node --module es2022 --allowSyntheticDefaultImports -p tsconfig.typecheck.json"
},
"devDependencies": {
"@types/bun": "^1.2.5"
},
"dependencies": {
"@duckdb/duckdb-wasm": "^1.30.0",
"@duckdb/node-api": "^1.4.1-r.4",
"es-toolkit": "^1.33.0",
"typescript": "5.9.2",
"web-worker": "^1.5.0"
},
"license": "MIT"
}