mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 20:19:39 +02:00
Allows Vite/SvelteKit to import the package without a prior build step, matching the pattern used by other shared packages like shared-credit-ui. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
27 lines
533 B
JSON
27 lines
533 B
JSON
{
|
|
"name": "@manacore/credit-operations",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Central credit operation definitions and costs for all Mana apps",
|
|
"main": "src/index.ts",
|
|
"types": "src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"import": "./src/index.ts",
|
|
"default": "./src/index.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"clean": "rm -rf dist",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
]
|
|
}
|