feat: migrated packages to ts

This commit is contained in:
Haoyu Xu
2025-05-02 02:27:42 +08:00
parent 0af0c785d4
commit 8f6f537c81
111 changed files with 3166 additions and 1155 deletions

View File

@@ -1,37 +1,42 @@
{
"private": true,
"scripts": {
"build": "turbo run build",
"dev:showcase": "turbo run dev:showcase --ui tui",
"preview:showcase": "turbo run preview:showcase --ui tui",
"dev:directory": "turbo run dev:directory --ui tui",
"preview:directory": "turbo run preview:directory --ui tui",
"preview": "http-server ./dist",
"lint": "turbo run lint",
"update": "turbo run update",
"init": "turbo run init",
"download:game": "turbo run download:game",
"build:cleanup": "turbo run build:cleanup"
},
"devDependencies": {
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.25.1",
"http-server": "^14.1.1",
"prettier": "^3.5.3",
"stylelint": "^16.19.1",
"turbo": "^2.5.2"
},
"name": "aklive2d",
"type": "module",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"packageManager": "bun@1.2.11",
"workspaces": ["packages/*", "apps/*"],
"trustedDependencies": [
"@parcel/watcher",
"@swc/core"
]
"private": true,
"scripts": {
"build": "turbo run build",
"dev:showcase": "turbo run dev:showcase --ui tui",
"preview:showcase": "turbo run preview:showcase --ui tui",
"dev:directory": "turbo run dev:directory --ui tui",
"preview:directory": "turbo run preview:directory --ui tui",
"preview": "http-server ./dist",
"lint": "turbo run lint",
"update": "turbo run update",
"init": "turbo run init",
"download:game": "turbo run download:game",
"build:cleanup": "turbo run build:cleanup"
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.25.1",
"http-server": "^14.1.1",
"prettier": "^3.5.3",
"stylelint": "^16.19.1",
"turbo": "^2.5.2",
"typescript": "5.8.2"
},
"name": "aklive2d",
"type": "module",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"packageManager": "bun@1.2.11",
"workspaces": [
"packages/*",
"apps/*"
],
"trustedDependencies": [
"@parcel/watcher",
"@swc/core"
]
}