diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2024-01-19 20:51:49 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2024-01-19 20:51:49 +0900 |
| commit | a637b4e28259e89285fc1c67589c731a053f5562 (patch) | |
| tree | bda9783430b2e75e14484d0bd0ef0541c160c09e /packages/misskey-reversi/package.json | |
| parent | Enhance(frontend): MFMの属性にオートコンプリートが利用でき... (diff) | |
| download | sharkey-a637b4e28259e89285fc1c67589c731a053f5562.tar.gz sharkey-a637b4e28259e89285fc1c67589c731a053f5562.tar.bz2 sharkey-a637b4e28259e89285fc1c67589c731a053f5562.zip | |
feat: reversi
Resolve #12962
Diffstat (limited to 'packages/misskey-reversi/package.json')
| -rw-r--r-- | packages/misskey-reversi/package.json | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/packages/misskey-reversi/package.json b/packages/misskey-reversi/package.json new file mode 100644 index 0000000000..8d3ca30166 --- /dev/null +++ b/packages/misskey-reversi/package.json @@ -0,0 +1,26 @@ +{ + "name": "misskey-reversi", + "version": "0.0.1", + "main": "./built/index.js", + "types": "./built/index.d.ts", + "scripts": { + "build": "tsc", + "watch": "nodemon -w src -e ts,js,cjs,mjs,json --exec \"pnpm run build\"", + "eslint": "eslint . --ext .js,.jsx,.ts,.tsx", + "typecheck": "tsc --noEmit", + "lint": "pnpm typecheck && pnpm eslint" + }, + "devDependencies": { + "@misskey-dev/eslint-plugin": "1.0.0", + "@types/node": "20.11.5", + "@typescript-eslint/eslint-plugin": "6.19.0", + "@typescript-eslint/parser": "6.19.0", + "eslint": "8.56.0", + "typescript": "5.3.3" + }, + "files": [ + "built" + ], + "dependencies": { + } +} |