-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
333 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,38 @@ | ||
{ | ||
"name": "aikami", | ||
"version": "0.0.1", | ||
"scripts": { | ||
"generate:image": "bun run ai/image/generate.ts", | ||
"lint:ai": "eslint . --ext .ts", | ||
"format:ai": "prettier --write .", | ||
"validate:ai": "tsc --noEmit", | ||
"validate:godot": "cd game && gdlint .", | ||
"format:godot": "cd game && gdformat .", | ||
"validate": "bun validate:ai && bun validate:godot", | ||
"format": "bun format:ai && bun format:godot", | ||
"lint": "bun lint:ai", | ||
"host": "bun run ai/host-locally.ts", | ||
"build:web": "cd game && godot --headless --export-release webgl", | ||
"build:linux": "cd game && godot --headless --export-release linux", | ||
"build:windows": "cd game && godot --headless --export-release windows", | ||
"build:macos": "cd game && godot --headless --export-release macos", | ||
"serve:web": "python serve.py", | ||
"serve:linux": "build/linux/aikami.x86_64", | ||
"reset": "rm -rf build && bun postinstall", | ||
"postinstall": "mkdir -v -p build/linux build/windows build/macos build/webgl" | ||
}, | ||
"devDependencies": { | ||
"@types/bun": "^1.0.5", | ||
"@typescript-eslint/eslint-plugin": "^6.21.0", | ||
"eslint": "^8.56.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"lefthook": "^1.6.1", | ||
"prettier": "^3.2.5" | ||
}, | ||
"dependencies": { | ||
"@huggingface/inference": "^2.6.4", | ||
"typescript": "^5.3.3" | ||
} | ||
"name": "aikami", | ||
"version": "0.0.1", | ||
"scripts": { | ||
"generate:image": "bun run ai/image/generate.ts", | ||
"lint:ai": "eslint . --ext .ts", | ||
"format:ai": "prettier --write .", | ||
"validate:ai": "tsc --noEmit", | ||
"validate:godot": "cd game && poetry run gdlint .", | ||
"format:godot": "cd game && poetry run gdformat .", | ||
"validate": "bun validate:ai && bun validate:godot", | ||
"format": "bun format:ai && bun format:godot", | ||
"lint": "bun lint:ai", | ||
"host": "bun run ai/host-locally.ts", | ||
"build:web": "cd game && godot --headless --export-release webgl", | ||
"build:linux": "cd game && godot --headless --export-release linux", | ||
"build:windows": "cd game && godot --headless --export-release windows", | ||
"build:macos": "cd game && godot --headless --export-release macos", | ||
"serve:web": "python serve.py", | ||
"serve:linux": "build/linux/aikami.x86_64", | ||
"reset": "rm -rf build && bun postinstall", | ||
"setup-build-folders": "mkdir -v -p build/linux build/windows build/macos build/webgl", | ||
"postinstall": "bun setup-build-folders" | ||
}, | ||
"devDependencies": { | ||
"@types/bun": "^1.0.5", | ||
"@typescript-eslint/eslint-plugin": "^6.21.0", | ||
"eslint": "^8.56.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"firebase-tools": "^13.4.0", | ||
"lefthook": "^1.6.1", | ||
"prettier": "^3.2.5" | ||
}, | ||
"dependencies": { | ||
"@huggingface/inference": "^2.6.4", | ||
"typescript": "^5.3.3" | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[tool.poetry] | ||
name = "aikami" | ||
version = "0.1.0" | ||
description = "" | ||
authors = ["BearlySleeping <[email protected]>"] | ||
readme = "README.md" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.11" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
gdtoolkit = "4.*" | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" |