mistykey/packages/misskey-reversi/package.json

43 lines
1.1 KiB
JSON

{
"type": "module",
"name": "misskey-reversi",
"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 --quiet --cache -c eslint.config.js .",
"typecheck-all": "pnpm run --no-bail typecheck:game && pnpm run --no-bail typecheck:scripts",
"typecheck": "pnpm run typecheck:game && pnpm run typecheck:scripts",
"typecheck:game": "tsc -p tsconfig.game.json --noEmit",
"typecheck:scripts": "tsc -p tsconfig.scripts.json --noEmit",
"lint": "pnpm typecheck && pnpm eslint"
},
"devDependencies": {
"@types/node": "22.18.1",
"@typescript-eslint/eslint-plugin": "8.44.1",
"@typescript-eslint/parser": "8.44.1",
"esbuild": "0.25.10",
"execa": "9.6.0",
"glob": "11.0.3",
"nodemon": "3.1.10",
"typescript": "5.9.2"
},
"files": [
"built"
],
"dependencies": {
"crc-32": "1.2.2"
}
}