mirror of
https://github.com/run-llama/create-llama.git
synced 2026-07-01 21:04:08 -04:00
3960618454
* chore: create-llama monorepo * add root package.json and pnpm workspace * keep e2e inside create-llama * update root package.json * move scripts and dev dependencies of create-llama to root * update e2e test for create-llama package * update lint workflow * update release llama-index-server workflow * update path for test_llama_index_server workflow * remove local lock file * keep lint and format in create-llama * fix: format * update pre-commit * move playwright back to create-llama * disable pnpm for installing generated frontend * use npm for type check * update gitignore * try --ignore-workspace option * Move llama-index-server from packages/python-server to python directory * update CI for python server * Create plenty-spies-tickle.md
40 lines
1.0 KiB
JSON
40 lines
1.0 KiB
JSON
{
|
|
"name": "create-llama-monorepo",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Monorepo for create-llama",
|
|
"keywords": [
|
|
"rag",
|
|
"llamaindex"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/run-llama/create-llama"
|
|
},
|
|
"license": "MIT",
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"prepare": "husky",
|
|
"new-snapshot": "pnpm -r build && changeset version --snapshot",
|
|
"new-version": "pnpm -r build && changeset version",
|
|
"release": "pnpm -r build && changeset publish",
|
|
"release-snapshot": "pnpm -r build && changeset publish --tag snapshot",
|
|
"build": "pnpm -r --filter create-llama build",
|
|
"e2e": "pnpm -r --filter create-llama e2e",
|
|
"dev": "pnpm -r --filter create-llama dev",
|
|
"format": "pnpm -r --filter create-llama format",
|
|
"format:write": "pnpm -r --filter create-llama format:write",
|
|
"lint": "pnpm -r --filter create-llama lint"
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/cli": "^2.27.1",
|
|
"husky": "^9.0.10"
|
|
},
|
|
"packageManager": "pnpm@9.0.5",
|
|
"engines": {
|
|
"node": ">=16.14.0"
|
|
}
|
|
}
|