2024-01-19 12:51:49 +01:00
|
|
|
{
|
2024-01-20 05:14:46 +01:00
|
|
|
"type": "module",
|
2024-01-19 12:51:49 +01:00
|
|
|
"name": "misskey-reversi",
|
|
|
|
"version": "0.0.1",
|
2024-03-30 07:28:19 +01:00
|
|
|
"main": "./built/index.js",
|
|
|
|
"types": "./built/index.d.ts",
|
2024-01-20 05:14:46 +01:00
|
|
|
"exports": {
|
|
|
|
".": {
|
2024-03-30 07:28:19 +01:00
|
|
|
"import": "./built/index.js",
|
|
|
|
"types": "./built/index.d.ts"
|
2024-01-20 05:14:46 +01:00
|
|
|
},
|
|
|
|
"./*": {
|
2024-03-30 07:28:19 +01:00
|
|
|
"import": "./built/*",
|
|
|
|
"types": "./built/*"
|
2024-01-20 05:14:46 +01:00
|
|
|
}
|
|
|
|
},
|
2024-01-19 12:51:49 +01:00
|
|
|
"scripts": {
|
2024-01-22 22:36:44 +01:00
|
|
|
"build": "node ./build.js",
|
2024-03-30 07:28:19 +01:00
|
|
|
"watch": "nodemon -w package.json -e json --exec \"node ./build.js --watch\"",
|
2024-07-02 04:38:34 +02:00
|
|
|
"eslint": "eslint './**/*.{js,jsx,ts,tsx}'",
|
2024-01-19 12:51:49 +01:00
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
"lint": "pnpm typecheck && pnpm eslint"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-11-15 09:22:00 +01:00
|
|
|
"@types/node": "22.9.0",
|
2024-03-01 05:52:39 +01:00
|
|
|
"@typescript-eslint/eslint-plugin": "7.1.0",
|
|
|
|
"@typescript-eslint/parser": "7.1.0",
|
2024-11-15 11:48:31 +01:00
|
|
|
"execa": "8.0.1",
|
2024-11-15 11:40:12 +01:00
|
|
|
"nodemon": "3.1.7",
|
2024-11-15 09:22:00 +01:00
|
|
|
"typescript": "5.6.3",
|
|
|
|
"esbuild": "0.24.0",
|
|
|
|
"glob": "11.0.0"
|
2024-01-19 12:51:49 +01:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"built"
|
|
|
|
],
|
|
|
|
"dependencies": {
|
2024-03-30 07:28:19 +01:00
|
|
|
"crc-32": "1.2.2"
|
2024-01-19 12:51:49 +01:00
|
|
|
}
|
|
|
|
}
|