misskey/packages/misskey-reversi/package.json

41 lines
865 B
JSON
Raw Normal View History

2024-01-19 11:51:49 +00:00
{
2024-01-20 04:14:46 +00:00
"type": "module",
2024-01-19 11:51:49 +00:00
"name": "misskey-reversi",
"version": "0.0.1",
"main": "./built/index.js",
"types": "./built/index.d.ts",
2024-01-20 04:14:46 +00:00
"exports": {
".": {
"import": "./built/index.js",
"types": "./built/index.d.ts"
2024-01-20 04:14:46 +00:00
},
"./*": {
"import": "./built/*",
"types": "./built/*"
2024-01-20 04:14:46 +00:00
}
},
2024-01-19 11:51:49 +00:00
"scripts": {
"build": "node ./build.js",
"watch": "nodemon -w package.json -e json --exec \"node ./build.js --watch\"",
"eslint": "eslint './**/*.{js,jsx,ts,tsx}'",
2024-01-19 11:51:49 +00:00
"typecheck": "tsc --noEmit",
"lint": "pnpm typecheck && pnpm eslint"
},
"devDependencies": {
"@types/node": "20.11.5",
2024-03-01 04:52:39 +00:00
"@typescript-eslint/eslint-plugin": "7.1.0",
"@typescript-eslint/parser": "7.1.0",
"execa": "8.0.1",
2024-01-20 04:14:46 +00:00
"nodemon": "3.0.2",
"typescript": "5.3.3",
"esbuild": "0.19.11",
"glob": "10.3.10"
2024-01-19 11:51:49 +00:00
},
"files": [
"built"
],
"dependencies": {
"crc-32": "1.2.2"
2024-01-19 11:51:49 +00:00
}
}