-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 966 Bytes
/
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
{
"name": "chdb-bun",
"version": "1.1.0",
"author": "Farmer Sun <[email protected]>",
"module": "lib/index.js",
"devDependencies": {
"bun-types": "^1.0.19",
"typescript": "^5.3.3"
},
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"license": "Apache2.0",
"maintainers": [
{
"name": "Farmer Sun",
"email": "[email protected]"
},
{
"name": "Auxten",
"email": "[email protected]"
},
{
"name": "Lorenzo Mangani",
"email": "[email protected]"
}
],
"scripts": {
"build:lib": "cd lib && ./update_libchdb.sh && ./build.sh",
"build:ts": "bun build index.ts --target=bun --outfile=lib/index.js --sourcemap=inline && tsc --declaration --emitDeclarationOnly --types bun-types --declarationDir lib index.ts",
"build": "bun run build:ts && bun run build:lib"
},
"type": "module",
"types": "lib/index.d.ts",
"dependencies": {
}
}