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