mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-03-21 03:30:42 +00:00
* refactor: localesをworkspace管理下のパッケージに * fix copilot review * move * move * rename * fix ci * revert unwanted indent changes * fix * fix * fix * fix * 間違えてコミットしていたのを戻す * 不要 * 追加漏れ * ymlの場所だけ戻す * localesの位置を戻したのでこの差分は不要 * 内容的にlocalesにある方が正しい * i18nパッケージ用のREADME.mdを用意 * fix locale.yml * fix locale.yml --------- Co-authored-by: kakkokari-gtyih <67428053+kakkokari-gtyih@users.noreply.github.com>
27 lines
565 B
JSON
27 lines
565 B
JSON
{
|
|
"name": "frontend-builder",
|
|
"type": "module",
|
|
"scripts": {
|
|
"eslint": "eslint './**/*.{js,jsx,ts,tsx}'",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "pnpm typecheck && pnpm eslint"
|
|
},
|
|
"exports": {
|
|
"./*": "./js/*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/estree": "1.0.8",
|
|
"@types/node": "24.10.1",
|
|
"@typescript-eslint/eslint-plugin": "8.47.0",
|
|
"@typescript-eslint/parser": "8.47.0",
|
|
"rollup": "4.53.3",
|
|
"typescript": "5.9.3"
|
|
},
|
|
"dependencies": {
|
|
"i18n": "workspace:*",
|
|
"estree-walker": "3.0.3",
|
|
"magic-string": "0.30.21",
|
|
"vite": "7.2.4"
|
|
}
|
|
}
|