1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-07-27 00:34:35 +02:00
Files
misskey/packages/misskey-bubble-game/package.json
かっこかり 554339aaa1 deps: update dependencies (#17631)
* deps: update deps

* Update Changelog

* update dependencies (major)

* fix: broken lockfile on changelog-checker

* update vite

* update minimum working node version to 22.22.0

* update minimum working node version to 22.22.2

* fix types

* refactor: avoid using default import

* Revert "refactor: avoid using default import"

This reverts commit 5784df2ff0.

---------

Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
2026-06-27 22:04:08 +09:00

45 lines
1008 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",
"default": "./built/index.js"
},
"./*": {
"import": "./built/*",
"types": "./built/*",
"default": "./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": "tsgo --noEmit",
"lint": "pnpm typecheck && pnpm eslint"
},
"devDependencies": {
"@types/matter-js": "0.20.2",
"@types/node": "24.13.2",
"@types/seedrandom": "3.0.8",
"@typescript-eslint/eslint-plugin": "8.61.1",
"@typescript-eslint/parser": "8.61.1",
"esbuild": "0.28.1",
"execa": "9.6.1",
"nodemon": "3.1.14"
},
"files": [
"built"
],
"dependencies": {
"eventemitter3": "5.0.4",
"matter-js": "0.20.0",
"seedrandom": "3.0.5"
}
}