mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 21:21:10 +02:00
The package.json was pointing main/exports to src/index.ts which crashes in production Docker containers where Node runs CJS and can't handle ESM export tokens. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
26 lines
510 B
JSON
26 lines
510 B
JSON
{
|
|
"name": "@manacore/credit-operations",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Central credit operation definitions and costs for all Mana apps",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"clean": "rm -rf dist",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
]
|
|
}
|