mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-05 17:33:08 +02:00
6a23ffcce5
* cleanup(sw/build.js) * fix(sw/build.js): `define`に真偽値を渡していた問題を修正 `define`では文字列を渡さなければならないので、`JSON.stringify`をするようにした。 * fix(sw/build.js): `string`が期待される`define`において`undefined`になる場合がある問題を修正 * update(sw): esbuild 0.17.15 * fixup! update(sw): esbuild 0.17.15 * fixup! fix(sw/build.js): `string`が期待される`define`において`undefined`になる場合がある問題を修正 コメントの文言を調整
23 lines
548 B
JSON
23 lines
548 B
JSON
{
|
|
"name": "sw",
|
|
"private": true,
|
|
"scripts": {
|
|
"watch": "node build.js watch",
|
|
"build": "node build.js",
|
|
"typecheck": "tsc --noEmit",
|
|
"eslint": "eslint --quiet src/**/*.ts",
|
|
"lint": "pnpm typecheck && pnpm eslint"
|
|
},
|
|
"dependencies": {
|
|
"esbuild": "0.17.15",
|
|
"idb-keyval": "6.2.0",
|
|
"misskey-js": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/parser": "5.57.1",
|
|
"@typescript/lib-webworker": "npm:@types/serviceworker@0.0.67",
|
|
"eslint": "8.37.0",
|
|
"eslint-plugin-import": "2.27.5",
|
|
"typescript": "5.0.3"
|
|
}
|
|
}
|