mirror of
https://github.com/coleam00/bolt.new-any-llm
synced 2024-12-28 06:42:56 +00:00
34b1235742
Bumps the npm_and_yarn group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.3.1` | `5.3.6` | | [cross-spawn](https://github.com/moxystudio/node-cross-spawn) | `7.0.3` | `7.0.6` | | [elliptic](https://github.com/indutny/elliptic) | `6.5.6` | `6.6.1` | | [express](https://github.com/expressjs/express) | `4.19.2` | `4.21.1` | | [micromatch](https://github.com/micromatch/micromatch) | `4.0.7` | `4.0.8` | | [rollup](https://github.com/rollup/rollup) | `4.18.0` | `4.27.4` | Updates `vite` from 5.3.1 to 5.3.6 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v5.3.6/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.3.6/packages/vite) Updates `cross-spawn` from 7.0.3 to 7.0.6 - [Changelog](https://github.com/moxystudio/node-cross-spawn/blob/master/CHANGELOG.md) - [Commits](https://github.com/moxystudio/node-cross-spawn/compare/v7.0.3...v7.0.6) Updates `elliptic` from 6.5.6 to 6.6.1 - [Commits](https://github.com/indutny/elliptic/compare/v6.5.6...v6.6.1) Updates `express` from 4.19.2 to 4.21.1 - [Release notes](https://github.com/expressjs/express/releases) - [Changelog](https://github.com/expressjs/express/blob/4.21.1/History.md) - [Commits](https://github.com/expressjs/express/compare/4.19.2...4.21.1) Updates `micromatch` from 4.0.7 to 4.0.8 - [Release notes](https://github.com/micromatch/micromatch/releases) - [Changelog](https://github.com/micromatch/micromatch/blob/master/CHANGELOG.md) - [Commits](https://github.com/micromatch/micromatch/compare/4.0.7...4.0.8) Updates `path-to-regexp` from 0.1.7 to 0.1.10 - [Release notes](https://github.com/pillarjs/path-to-regexp/releases) - [Changelog](https://github.com/pillarjs/path-to-regexp/blob/master/History.md) - [Commits](https://github.com/pillarjs/path-to-regexp/compare/v0.1.7...v0.1.10) Updates `rollup` from 4.18.0 to 4.27.4 - [Release notes](https://github.com/rollup/rollup/releases) - [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md) - [Commits](https://github.com/rollup/rollup/compare/v4.18.0...v4.27.4) Updates `send` from 0.18.0 to 0.19.0 - [Release notes](https://github.com/pillarjs/send/releases) - [Changelog](https://github.com/pillarjs/send/blob/master/HISTORY.md) - [Commits](https://github.com/pillarjs/send/compare/0.18.0...0.19.0) Updates `serve-static` from 1.15.0 to 1.16.2 - [Release notes](https://github.com/expressjs/serve-static/releases) - [Changelog](https://github.com/expressjs/serve-static/blob/v1.16.2/HISTORY.md) - [Commits](https://github.com/expressjs/serve-static/compare/v1.15.0...v1.16.2) --- updated-dependencies: - dependency-name: vite dependency-type: direct:development dependency-group: npm_and_yarn - dependency-name: cross-spawn dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: elliptic dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: express dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: micromatch dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: path-to-regexp dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: rollup dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: send dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: serve-static dependency-type: indirect dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] <support@github.com>
127 lines
4.3 KiB
JSON
127 lines
4.3 KiB
JSON
{
|
|
"name": "bolt",
|
|
"description": "StackBlitz AI Agent",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"sideEffects": false,
|
|
"type": "module",
|
|
"scripts": {
|
|
"deploy": "npm run build && wrangler pages deploy",
|
|
"build": "remix vite:build",
|
|
"dev": "remix vite:dev",
|
|
"test": "vitest --run",
|
|
"test:watch": "vitest",
|
|
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint app",
|
|
"lint:fix": "npm run lint -- --fix && prettier app --write",
|
|
"start": "bindings=$(./bindings.sh) && wrangler pages dev ./build/client $bindings",
|
|
"dockerstart": "bindings=$(./bindings.sh) && wrangler pages dev ./build/client $bindings --ip 0.0.0.0 --port 5173 --no-show-interactive-dev-session",
|
|
"dockerrun": "docker run -it -d --name bolt-ai-live -p 5173:5173 --env-file .env.local bolt-ai",
|
|
"dockerbuild:prod": "docker build -t bolt-ai:production -t bolt-ai:latest --target bolt-ai-production .",
|
|
"dockerbuild": "docker build -t bolt-ai:development -t bolt-ai:latest --target bolt-ai-development .",
|
|
"typecheck": "tsc",
|
|
"typegen": "wrangler types",
|
|
"preview": "pnpm run build && pnpm run start",
|
|
"prepare": "husky"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.18.0"
|
|
},
|
|
"dependencies": {
|
|
"@ai-sdk/anthropic": "^0.0.39",
|
|
"@ai-sdk/cohere": "^1.0.1",
|
|
"@ai-sdk/google": "^0.0.52",
|
|
"@ai-sdk/mistral": "^0.0.43",
|
|
"@ai-sdk/openai": "^0.0.66",
|
|
"@codemirror/autocomplete": "^6.17.0",
|
|
"@codemirror/commands": "^6.6.0",
|
|
"@codemirror/lang-cpp": "^6.0.2",
|
|
"@codemirror/lang-css": "^6.2.1",
|
|
"@codemirror/lang-html": "^6.4.9",
|
|
"@codemirror/lang-javascript": "^6.2.2",
|
|
"@codemirror/lang-json": "^6.0.1",
|
|
"@codemirror/lang-markdown": "^6.2.5",
|
|
"@codemirror/lang-python": "^6.1.6",
|
|
"@codemirror/lang-sass": "^6.0.2",
|
|
"@codemirror/lang-wast": "^6.0.2",
|
|
"@codemirror/language": "^6.10.2",
|
|
"@codemirror/search": "^6.5.6",
|
|
"@codemirror/state": "^6.4.1",
|
|
"@codemirror/view": "^6.28.4",
|
|
"@iconify-json/ph": "^1.1.13",
|
|
"@iconify-json/svg-spinners": "^1.1.2",
|
|
"@lezer/highlight": "^1.2.0",
|
|
"@nanostores/react": "^0.7.2",
|
|
"@octokit/rest": "^21.0.2",
|
|
"@octokit/types": "^13.6.1",
|
|
"@openrouter/ai-sdk-provider": "^0.0.5",
|
|
"@radix-ui/react-dialog": "^1.1.1",
|
|
"@radix-ui/react-dropdown-menu": "^2.1.1",
|
|
"@radix-ui/react-tooltip": "^1.1.4",
|
|
"@remix-run/cloudflare": "^2.10.2",
|
|
"@remix-run/cloudflare-pages": "^2.10.2",
|
|
"@remix-run/react": "^2.10.2",
|
|
"@uiw/codemirror-theme-vscode": "^4.23.0",
|
|
"@unocss/reset": "^0.61.0",
|
|
"@webcontainer/api": "1.3.0-internal.10",
|
|
"@xterm/addon-fit": "^0.10.0",
|
|
"@xterm/addon-web-links": "^0.11.0",
|
|
"@xterm/xterm": "^5.5.0",
|
|
"ai": "^3.4.9",
|
|
"date-fns": "^3.6.0",
|
|
"diff": "^5.2.0",
|
|
"file-saver": "^2.0.5",
|
|
"framer-motion": "^11.2.12",
|
|
"ignore": "^6.0.2",
|
|
"isbot": "^4.1.0",
|
|
"istextorbinary": "^9.5.0",
|
|
"jose": "^5.6.3",
|
|
"js-cookie": "^3.0.5",
|
|
"jszip": "^3.10.1",
|
|
"nanostores": "^0.10.3",
|
|
"ollama-ai-provider": "^0.15.2",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-hotkeys-hook": "^4.5.0",
|
|
"react-markdown": "^9.0.1",
|
|
"react-resizable-panels": "^2.0.20",
|
|
"react-toastify": "^10.0.5",
|
|
"rehype-raw": "^7.0.0",
|
|
"rehype-sanitize": "^6.0.0",
|
|
"remark-gfm": "^4.0.0",
|
|
"remix-island": "^0.2.0",
|
|
"remix-utils": "^7.6.0",
|
|
"shiki": "^1.9.1",
|
|
"unist-util-visit": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@blitz/eslint-plugin": "0.1.0",
|
|
"@cloudflare/workers-types": "^4.20240620.0",
|
|
"@remix-run/dev": "^2.10.0",
|
|
"@types/diff": "^5.2.1",
|
|
"@types/file-saver": "^2.0.7",
|
|
"@types/js-cookie": "^3.0.6",
|
|
"@types/react": "^18.2.20",
|
|
"@types/react-dom": "^18.2.7",
|
|
"fast-glob": "^3.3.2",
|
|
"husky": "9.1.7",
|
|
"is-ci": "^3.0.1",
|
|
"node-fetch": "^3.3.2",
|
|
"prettier": "^3.3.2",
|
|
"sass-embedded": "^1.80.3",
|
|
"typescript": "^5.5.2",
|
|
"unified": "^11.0.5",
|
|
"unocss": "^0.61.3",
|
|
"vite": "^5.3.6",
|
|
"vite-plugin-node-polyfills": "^0.22.0",
|
|
"vite-plugin-optimize-css-modules": "^1.1.0",
|
|
"vite-tsconfig-paths": "^4.3.2",
|
|
"vitest": "^2.0.1",
|
|
"wrangler": "^3.63.2",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"resolutions": {
|
|
"@typescript-eslint/utils": "^8.0.0-alpha.30"
|
|
},
|
|
"packageManager": "pnpm@9.4.0"
|
|
}
|