Skip to content

Commit 45b45be

Browse files
committed
Fix package build cmd
1 parent 571faa6 commit 45b45be

File tree

1 file changed

+16
-10
lines changed

1 file changed

+16
-10
lines changed

package.json

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
11
{
22
"name": "chdb-bun",
3-
"version": "1.0.4",
3+
"version": "1.1.0",
4+
"author": "Farmer Sun <[email protected]>",
45
"module": "lib/index.js",
5-
"types": "lib/index.d.ts",
6-
"scripts": {
7-
"build:lib": "cd lib && ./build.sh",
8-
"build:ts": "bun build index.ts --target=bun --outfile=lib/index.js --sourcemap=inline && tsc --declaration --emitDeclarationOnly --types bun-types --declarationDir lib index.ts",
9-
"build": "bun run build:ts && bun run build:lib"
10-
},
11-
"type": "module",
126
"devDependencies": {
137
"bun-types": "^1.0.19",
148
"typescript": "^5.3.3"
@@ -19,16 +13,28 @@
1913
"files": [
2014
"lib"
2115
],
16+
"license": "Apache2.0",
2217
"maintainers": [
2318
{
2419
"name": "Farmer Sun",
2520
"email": "[email protected]"
2621
},
22+
{
23+
"name": "Auxten",
24+
"email": "[email protected]"
25+
},
2726
{
2827
"name": "Lorenzo Mangani",
2928
"email": "[email protected]"
3029
}
3130
],
32-
"author": "Lorenzo Mangani <[email protected]>",
33-
"license": "Apache2.0"
31+
"scripts": {
32+
"build:lib": "cd lib && ./update_libchdb.sh && ./build.sh",
33+
"build:ts": "bun build index.ts --target=bun --outfile=lib/index.js --sourcemap=inline && tsc --declaration --emitDeclarationOnly --types bun-types --declarationDir lib index.ts",
34+
"build": "bun run build:ts && bun run build:lib"
35+
},
36+
"type": "module",
37+
"types": "lib/index.d.ts",
38+
"dependencies": {
39+
}
3440
}

0 commit comments

Comments
 (0)