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>
43 lines
953 B
JSON
43 lines
953 B
JSON
{
|
|
"name": "i18n",
|
|
"type": "module",
|
|
"private": true,
|
|
"main": "./built/index.js",
|
|
"types": "./built/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./built/index.d.ts",
|
|
"import": "./built/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"generate": "tsx scripts/generateLocaleInterface.ts",
|
|
"verify": "tsx scripts/verify.ts",
|
|
"build": "tsx ./build.ts",
|
|
"watch": "nodemon -w package.json -e json --exec \"tsx ./build.ts --watch\"",
|
|
"tsd": "tsd",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "pnpm typecheck && pnpm eslint",
|
|
"lint:fix": "pnpm eslint --fix"
|
|
},
|
|
"files": [
|
|
"built"
|
|
],
|
|
"devDependencies": {
|
|
"@types/js-yaml": "4.0.9",
|
|
"@types/node": "24.10.1",
|
|
"@typescript-eslint/eslint-plugin": "8.47.0",
|
|
"@typescript-eslint/parser": "8.47.0",
|
|
"chokidar": "4.0.3",
|
|
"esbuild": "0.27.0",
|
|
"execa": "9.6.0",
|
|
"glob": "11.1.0",
|
|
"nodemon": "3.1.11",
|
|
"tsx": "4.20.6",
|
|
"typescript": "5.9.3"
|
|
},
|
|
"dependencies": {
|
|
"js-yaml": "4.1.1"
|
|
}
|
|
}
|