427648c4b8
* wip * locales/index.jsのymlファイル取得ロジックを調節 * regenerate pnpm-lock.yaml * fix(backend): typecheck fails * chore(deps): bump ip-cidr from 4.0.0 to 4.0.1 in /packages/backend * chore: migrate ESLint configs to flat config (#14094) * chore: migrate ESLint configs to flat config * fix: update paths * fix: frontend lint fails * refactor(misskey-js): lint build.js * update deps --------- Co-authored-by: samunohito <46447427+samunohito@users.noreply.github.com> Co-authored-by: zyoshoka <root@zyoshoka.com> Co-authored-by: zyoshoka <107108195+zyoshoka@users.noreply.github.com>
44 lines
990 B
JSON
44 lines
990 B
JSON
{
|
|
"type": "module",
|
|
"name": "misskey-bubble-game",
|
|
"version": "0.0.1",
|
|
"main": "./built/index.js",
|
|
"types": "./built/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./built/index.js",
|
|
"types": "./built/index.d.ts"
|
|
},
|
|
"./*": {
|
|
"import": "./built/*",
|
|
"types": "./built/*"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "node ./build.js",
|
|
"watch": "nodemon -w package.json -e json --exec \"node ./build.js --watch\"",
|
|
"eslint": "eslint './**/*.{js,jsx,ts,tsx}'",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "pnpm typecheck && pnpm eslint"
|
|
},
|
|
"devDependencies": {
|
|
"@types/matter-js": "0.19.6",
|
|
"@types/seedrandom": "3.0.8",
|
|
"@types/node": "20.11.5",
|
|
"@typescript-eslint/eslint-plugin": "7.1.0",
|
|
"@typescript-eslint/parser": "7.1.0",
|
|
"nodemon": "3.0.2",
|
|
"execa": "8.0.1",
|
|
"typescript": "5.3.3",
|
|
"esbuild": "0.19.11",
|
|
"glob": "10.3.10"
|
|
},
|
|
"files": [
|
|
"built"
|
|
],
|
|
"dependencies": {
|
|
"eventemitter3": "5.0.1",
|
|
"matter-js": "0.19.0",
|
|
"seedrandom": "3.0.5"
|
|
}
|
|
}
|