Bumps the typescript-eslint group with 2 updates: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) and [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser). Updates `@typescript-eslint/eslint-plugin` from 7.1.0 to 8.13.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.13.0/packages/eslint-plugin) Updates `@typescript-eslint/parser` from 7.1.0 to 8.13.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.13.0/packages/parser) --- updated-dependencies: - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-major dependency-group: typescript-eslint - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-major dependency-group: typescript-eslint ... Signed-off-by: dependabot[bot] <support@github.com>
44 lines
992 B
JSON
44 lines
992 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": "8.13.0",
|
|
"@typescript-eslint/parser": "8.13.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"
|
|
}
|
|
}
|