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>
26 lines
641 B
JSON
26 lines
641 B
JSON
{
|
|
"name": "sw",
|
|
"private": true,
|
|
"scripts": {
|
|
"watch": "nodemon -w ../../package.json -e json --exec \"node build.js watch\"",
|
|
"build": "node build.js",
|
|
"typecheck": "tsc --noEmit",
|
|
"eslint": "eslint --quiet src/**/*.ts",
|
|
"lint": "pnpm typecheck && pnpm eslint"
|
|
},
|
|
"dependencies": {
|
|
"i18n": "workspace:*",
|
|
"esbuild": "0.27.0",
|
|
"idb-keyval": "6.2.2",
|
|
"misskey-js": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/parser": "8.47.0",
|
|
"@typescript/lib-webworker": "npm:@types/serviceworker@0.0.74",
|
|
"eslint-plugin-import": "2.32.0",
|
|
"nodemon": "3.1.11",
|
|
"typescript": "5.9.3"
|
|
},
|
|
"type": "module"
|
|
}
|