mirror of
https://github.com/dlt-hub/dlt.git
synced 2025-12-17 19:31:30 +00:00
* move pyproject.toml and makefile from old branch and add inbetween changes
* update workflow files to use uv
* run new version of formatter
* fix building of images with uv
* possibly fix docs linting
* downgrade lancedb dependency to fix tests
* fix gcs compat mode for s3 for newest boto
* fix docstrings in examples
* add some uv constraints
* update readme.md and contributing.md and some other places
* allow duckdb 0.8 in range
* add link-mode copy to uv venv on windows
* remove poetry lockfile and unneeded lockfile checker
* fix chess api related failures
* sleep after dremio start..
* set correct package in pyproject
* Revert "add some uv constraints"
This reverts commit d611e9ecce.
# Conflicts:
# pyproject.toml
# uv.lock
* add missing databricks sql connector version bounds
61 lines
2.1 KiB
JSON
61 lines
2.1 KiB
JSON
{
|
|
"name": "dlt-docs",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"docusaurus": "docusaurus",
|
|
"start": "npm run gen-api-ref && concurrently --kill-others \"node tools/preprocess_docs.js --watch\" \"docusaurus start\"",
|
|
"build": "npm run update-versions && npm run preprocess-docs && npm run gen-api-ref && docusaurus build",
|
|
"build:netlify": "npm run update-versions && npm run preprocess-docs && npm run gen-api-ref-netlify && docusaurus build --out-dir build/docs",
|
|
"swizzle": "docusaurus swizzle",
|
|
"clear": "docusaurus clear",
|
|
"serve": "docusaurus serve",
|
|
"write-translations": "docusaurus write-translations",
|
|
"write-heading-ids": "docusaurus write-heading-ids",
|
|
"clear-versions": "node tools/clear_versions.js",
|
|
"update-versions": "node tools/update_versions.js",
|
|
"preprocess-docs": "node tools/preprocess_docs.js",
|
|
"gen-api-ref": "PYTHONPATH=. uv run pydoc-markdown && uv run python clean_pydoc_sidebar.py",
|
|
"gen-api-ref-netlify": "PYTHONPATH=. pydoc-markdown && python clean_pydoc_sidebar.py",
|
|
"render-cli-docs": "PYTHONPATH=. uv run dlt render-docs > docs/reference/command-line-interface-generated.md"
|
|
},
|
|
"dependencies": {
|
|
"@docusaurus/core": "^3.7.0",
|
|
"@docusaurus/preset-classic": "^3.7.0",
|
|
"@docusaurus/theme-common": "^3.7.0",
|
|
"@mdx-js/react": "^3.1.0",
|
|
"clsx": "^1.2.1",
|
|
"dedent": "^1.5.1",
|
|
"dotenv": "^16.3.1",
|
|
"node-watch": "^0.7.4",
|
|
"prism-react-renderer": "^1.3.5",
|
|
"raw-loader": "^4.0.2",
|
|
"react": "^18.0.0",
|
|
"react-dom": "^18.0.0",
|
|
"react-twitter-embed": "^4.0.4",
|
|
"semver": "^7.6.3",
|
|
"string-dedent": "^3.0.1",
|
|
"sync-fetch": "^0.5.2",
|
|
"toml": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@docusaurus/module-type-aliases": "3.7.0",
|
|
"concurrently": "^8.2.2"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.5%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=20.10"
|
|
}
|
|
}
|