{ "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", "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/node": "24.10.9", "@typescript-eslint/eslint-plugin": "8.53.0", "@typescript-eslint/parser": "8.53.0", "esbuild": "0.27.2", "execa": "9.6.1", "nodemon": "3.1.11" }, "files": [ "built" ], "dependencies": { "crc-32": "1.2.2" } }