-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.48 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.48 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
50
51
52
53
{
"name": "dbxlite",
"private": true,
"version": "0.3.6",
"description": "Lightweight browser-native SQL utility powered by DuckDB - no install, just query",
"author": "hfmsio",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hfmsio/dbxlite.git"
},
"homepage": "https://github.com/hfmsio/dbxlite#readme",
"bugs": {
"url": "https://github.com/hfmsio/dbxlite/issues"
},
"keywords": [
"sql",
"duckdb",
"browser",
"database",
"query",
"data-analysis",
"wasm",
"utility"
],
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "pnpm -C apps/web-client dev",
"build": "pnpm -C apps/web-client build && pnpm -C apps/cli build",
"test": "pnpm -r test",
"lint": "biome lint . --diagnostic-level=error",
"lint:fix": "biome check --write .",
"e2e": "pnpm -C apps/web-client exec playwright test",
"e2e:ui": "pnpm -C apps/web-client exec playwright test --ui",
"e2e:headed": "pnpm -C apps/web-client exec playwright test --headed",
"e2e:simple": "pnpm -C apps/web-client exec playwright test --config=e2e/playwright-simple.config.ts",
"smoke:examples": "node scripts/smoke-examples.mjs",
"postinstall": "bash scripts/download-duckdb-wasm.sh"
},
"packageManager": "pnpm@11.4.0",
"engines": {
"node": ">=18",
"pnpm": ">=10"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@duckdb/node-api": "^1.5.2-r.1",
"typescript": "^5.9.3"
}
}