850d38414e
* fix: バブルゲームのビルド失敗修正 * fix: api.jsonの定義誤りを修正 * fix: lint.yml(typecheck) * fix: fix eslint error * fix: frontend vitest version * fix: frontend vitest version * fix: * fix: cypress * fix: misskey-js test * fix: misskey-js tsd(tsdはpakcage.jsonのexportsをサポートしない?) * fix: conflict * fix: 間違えて上書きしたところを修正 * fix: 再 * fix: api.json * fix: api.json * fix: タイムアウト延長 * Update packages/misskey-js/jest.config.cjs Co-authored-by: Sayamame-beans <61457993+Sayamame-beans@users.noreply.github.com> --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> Co-authored-by: Sayamame-beans <61457993+Sayamame-beans@users.noreply.github.com>
26 lines
679 B
JSON
26 lines
679 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": {
|
|
"esbuild": "0.19.11",
|
|
"idb-keyval": "6.2.1",
|
|
"misskey-js": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@misskey-dev/eslint-plugin": "1.0.0",
|
|
"@typescript-eslint/parser": "6.18.1",
|
|
"@typescript/lib-webworker": "npm:@types/serviceworker@0.0.67",
|
|
"eslint": "8.56.0",
|
|
"eslint-plugin-import": "2.29.1",
|
|
"nodemon": "3.0.3",
|
|
"typescript": "5.3.3"
|
|
},
|
|
"type": "module"
|
|
}
|