{
"name": "@repo/shared",
"version": "1.0.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./config/*": {
"types": "./dist/config/*.d.ts",
"import": "./dist/config/*.mjs",
"require": "./dist/config/*.js"
}
},
"scripts": {
"build": "tsup src/index.ts src/config/gameConfig.ts --format cjs,esm --dts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.28.2",
"devDependencies": {
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}