@xsin/xboard
Version:
Common utilities for XBoard, used by both the client and server
63 lines • 1.31 kB
JSON
{
"name": "@xsin/xboard",
"type": "module",
"version": "0.0.1",
"description": "Common utilities for XBoard, used by both the client and server",
"author": {
"name": "XSIN STUDIO"
},
"repository": {
"type": "git",
"url": "https://github.com/xsin/xboard",
"directory": "packages/common"
},
"keywords": [
"nestjs",
"prisma",
"xboard"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"package.json",
"prisma"
],
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "ts"
}
},
"dependencies": {
"@prisma/client": "^5.20.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^2.1.2",
"esno": "^4.8.0",
"prisma": "^5.20.0",
"unbuild": "^2.0.0",
"vitest": "^2.1.2"
},
"scripts": {
"test": "vitest",
"test:cov": "vitest run --coverage",
"build": "unbuild",
"stub": "unbuild --stub",
"watch": "npm-watch",
"db:seed": "esno prisma/seed.ts",
"db:gen": "npx prisma generate",
"db:migrate": "prisma migrate dev",
"postinstall": "pnpm run db:gen"
}
}