chore(deps): 🔧 upgrade llama-server to resolve build failures
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
parent
f2656f1445
commit
6fb5b552d3
7 changed files with 21 additions and 4961 deletions
|
|
@ -1,53 +0,0 @@
|
|||
{
|
||||
"name": "@magic-civilization/guide-age-of-dwarves",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"lint": "eslint src/",
|
||||
"lint:fix": "eslint src/ --fix",
|
||||
"test": "vitest run",
|
||||
"preview": "vite preview",
|
||||
"gen-vectors": "GENERATE=1 vitest run src/simulation/__tests__/golden.test.ts",
|
||||
"gen-names": "tsx ../../tools/gen-names.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lilith/ui-feedback": "^1.4.0",
|
||||
"@lilith/ui-layout": "^1.3.0",
|
||||
"@lilith/ui-primitives": "^1.2.16",
|
||||
"@lilith/ui-style-effects": "^1.1.0",
|
||||
"@lilith/ui-theme": "^1.5.0",
|
||||
"@lilith/ui-typography": "^1.1.7",
|
||||
"@magic-civ/engine-ts": "workspace:*",
|
||||
"@magic-civ/guide-engine": "workspace:*",
|
||||
"@magic-civ/physics-rs": "workspace:*",
|
||||
"ioredis": "^5.10.1",
|
||||
"react": "^19.0.0",
|
||||
"react-dom": "^19.0.0",
|
||||
"react-router-dom": "^7.0.0",
|
||||
"styled-components": "^6.0.0",
|
||||
"three": "^0.183.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@lilith/eslint-plugin-file-length": "^1.1.1",
|
||||
"@lilith/eslint-plugin-import-alias": "^1.2.2",
|
||||
"@playwright/test": "^1.59.0",
|
||||
"@types/node": "^25.5.0",
|
||||
"@types/react": "^19.0.0",
|
||||
"@types/react-dom": "^19.0.0",
|
||||
"@types/three": "^0.183.1",
|
||||
"@vitejs/plugin-react": "^4.0.0",
|
||||
"eslint": "^10.0.0",
|
||||
"eslint-plugin-react-hooks": "^7.0.0",
|
||||
"eslint-plugin-unused-imports": "^4.0.0",
|
||||
"tsx": "^4.21.0",
|
||||
"typescript": "^5.7.0",
|
||||
"typescript-eslint": "^8.0.0",
|
||||
"vite": "^6.0.0",
|
||||
"vite-plugin-wasm": "^3.6.0",
|
||||
"vitest": "^4.1.0"
|
||||
}
|
||||
}
|
||||
4908
games/age-of-dwarves/guide/pnpm-lock.yaml
generated
4908
games/age-of-dwarves/guide/pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
14
src/simulator/Cargo.lock
generated
14
src/simulator/Cargo.lock
generated
|
|
@ -643,9 +643,13 @@ name = "magic-civ-physics-gdext"
|
|||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"godot",
|
||||
"mc-city",
|
||||
"mc-climate",
|
||||
"mc-combat",
|
||||
"mc-compute",
|
||||
"mc-core",
|
||||
"mc-economy",
|
||||
"mc-items",
|
||||
"mc-mapgen",
|
||||
"serde",
|
||||
"serde_json",
|
||||
|
|
@ -674,6 +678,7 @@ name = "mc-city"
|
|||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"mc-core",
|
||||
"mc-economy",
|
||||
"serde",
|
||||
"serde_json",
|
||||
]
|
||||
|
|
@ -746,6 +751,14 @@ dependencies = [
|
|||
"serde_json",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "mc-items"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"serde",
|
||||
"serde_json",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "mc-magic"
|
||||
version = "0.1.0"
|
||||
|
|
@ -772,6 +785,7 @@ dependencies = [
|
|||
"mc-core",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"thiserror 1.0.69",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@ members = [
|
|||
"crates/mc-ai",
|
||||
"crates/mc-turn",
|
||||
"crates/mc-compute",
|
||||
"crates/mc-items",
|
||||
"api-wasm",
|
||||
"api-gdext",
|
||||
]
|
||||
|
|
|
|||
|
|
@ -10,6 +10,10 @@ crate-type = ["cdylib"]
|
|||
mc-core = { path = "../crates/mc-core" }
|
||||
mc-climate = { path = "../crates/mc-climate" }
|
||||
mc-mapgen = { path = "../crates/mc-mapgen" }
|
||||
mc-economy = { path = "../crates/mc-economy" }
|
||||
mc-city = { path = "../crates/mc-city" }
|
||||
mc-combat = { path = "../crates/mc-combat" }
|
||||
mc-items = { path = "../crates/mc-items" }
|
||||
mc-compute = { path = "../crates/mc-compute", features = ["gpu", "parallel"] }
|
||||
godot = "0.2"
|
||||
serde.workspace = true
|
||||
|
|
|
|||
|
|
@ -5,5 +5,6 @@ edition = "2021"
|
|||
|
||||
[dependencies]
|
||||
mc-core = { path = "../mc-core" }
|
||||
mc-economy = { path = "../mc-economy" }
|
||||
serde.workspace = true
|
||||
serde_json.workspace = true
|
||||
|
|
|
|||
|
|
@ -7,3 +7,4 @@ edition = "2021"
|
|||
mc-core = { path = "../mc-core" }
|
||||
serde.workspace = true
|
||||
serde_json.workspace = true
|
||||
thiserror = "1"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue