mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 00:41:09 +02:00
New calculator app with standard, scientific, programmer, unit converter, currency, finance, date, and percentage modes. Includes 5 visual skins: Modern, HP-35 (1972), Casio fx (1985), TI-84 (2004), and Minimal. Local-first with IndexedDB history, keyboard support, safe math parser. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
19 lines
361 B
JSON
19 lines
361 B
JSON
{
|
|
"name": "@calc/shared",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "./src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./types": "./src/types/index.ts",
|
|
"./constants": "./src/constants/index.ts"
|
|
},
|
|
"scripts": {
|
|
"type-check": "tsc --noEmit",
|
|
"lint": "eslint src"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|