-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
57 lines (57 loc) · 1.25 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
{
"name": "duckdb-wasm-kit",
"version": "0.1.38",
"description": "Utilities to make it easier to use duckdb-wasm in React apps.",
"author": "Matt Holden",
"license": "MIT",
"homepage": "https://github.com/holdenmatt/duckdb-wasm-kit",
"repository": {
"type": "git",
"url": "https://github.com/holdenmatt/duckdb-wasm-kit"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsup --dts"
},
"tsup": {
"entry": [
"src/index.ts"
],
"sourcemap": true,
"clean": true
},
"dependencies": {
"react-async-hook": "^4.0.0"
},
"devDependencies": {
"@duckdb/duckdb-wasm": "^1.28.0",
"@types/react": "^18.3.2",
"apache-arrow": "^15.0.0",
"eslint": "^9.3.0",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@duckdb/duckdb-wasm": "*",
"apache-arrow": ">=15.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"keywords": [
"duckdb",
"wasm",
"webassembly",
"react"
],
"files": [
"dist",
"src"
],
"prettier": {
"printWidth": 90
}
}