mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-24 07:06:26 +09:00
29 lines
780 B
JSON
29 lines
780 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",
|
|
"biome-lint": "pnpm typecheck && pnpm biome lint",
|
|
"format": "pnpm biome format",
|
|
"format:write": "pnpm biome format --write"
|
|
},
|
|
"dependencies": {
|
|
"esbuild": "0.23.1",
|
|
"idb-keyval": "6.2.1",
|
|
"cherrypick-js": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "1.9.3",
|
|
"@typescript-eslint/parser": "7.17.0",
|
|
"@typescript/lib-webworker": "npm:@types/serviceworker@0.0.67",
|
|
"eslint-plugin-import": "2.30.0",
|
|
"nodemon": "3.1.7",
|
|
"typescript": "5.6.2"
|
|
},
|
|
"type": "module"
|
|
}
|