Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 6.3.5 to 6.3.6. - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v6.3.6/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v6.3.6/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-version: 6.3.6 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
42 lines
1.2 KiB
JSON
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.6",
|
|
"vitest": "^3.2.4"
|
|
}
|
|
}
|