misskey/packages/misskey-reversi/package.json

44 lines
1.1 KiB
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",
"types": "./built/dts/index.d.ts",
2024-01-20 04:14:46 +00:00
"exports": {
".": {
"import": "./built/esm/index.js",
"types": "./built/dts/index.d.ts"
},
"./*": {
"import": "./built/esm/*",
"types": "./built/dts/*"
}
},
2024-01-19 11:51:49 +00:00
"scripts": {
"build": "node ./build.js",
"build:tsc": "pnpm tsc-esm && pnpm tsc-dts",
"tsc-esm": "tsc --outDir built/esm",
"tsc-dts": "tsc --outDir built/dts --declaration true --emitDeclarationOnly true --declarationMap true",
"watch": "nodemon -w src -e ts,js,cjs,mjs,json --exec \"pnpm run build:tsc\"",
2024-01-19 11:51:49 +00:00
"eslint": "eslint . --ext .js,.jsx,.ts,.tsx",
"typecheck": "tsc --noEmit",
"lint": "pnpm typecheck && pnpm eslint"
},
"devDependencies": {
"@misskey-dev/eslint-plugin": "1.0.0",
2024-03-06 21:04:07 +00:00
"@types/node": "20.11.25",
"@typescript-eslint/eslint-plugin": "7.1.1",
"@typescript-eslint/parser": "7.1.1",
2024-03-01 04:52:39 +00:00
"eslint": "8.57.0",
"nodemon": "3.1.0",
2024-03-06 21:04:07 +00:00
"typescript": "5.4.2"
2024-01-19 11:51:49 +00:00
},
"dependencies": {
"crc-32": "1.2.2",
"esbuild": "0.20.1",
"glob": "10.3.10"
},
2024-01-19 11:51:49 +00:00
"files": [
"built"
]
2024-01-19 11:51:49 +00:00
}