Files
duckdb-ui/ts/pkgs/duckdb-ui-client/package.json
Jeff Raymakers 8a724108f1 update ts deps (#19)
* update ts deps

* update pnpm-lock.yaml
2025-07-25 14:40:42 -07:00

42 lines
1.2 KiB
JSON

{
"name": "@duckdb/ui-client",
"version": "0.0.1",
"description": "Client for communicating with the DuckDB UI server",
"type": "module",
"main": "./out/index.js",
"module": "./out/index.js",
"types": "./out/index.d.ts",
"scripts": {
"preinstall": "pnpm build:src",
"build": "tsc -b src test",
"build:src": "tsc -b src",
"build:test": "tsc -b test",
"build:watch": "tsc -b src test --watch",
"check": "pnpm format:check && pnpm lint",
"clean": "rimraf out",
"format:check": "prettier . --ignore-path $(find-up .prettierignore) --check",
"format:write": "prettier . --ignore-path $(find-up .prettierignore) --write",
"lint": "pnpm eslint src test",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@duckdb/data-reader": "workspace:*",
"@duckdb/data-types": "workspace:*",
"@duckdb/data-values": "workspace:*",
"core-js": "^3.44.0"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"eslint": "^9.32.0",
"find-up-cli": "^6.0.0",
"msw": "^2.10.4",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0",
"vite": "^6.3.5",
"vitest": "^3.2.4"
}
}