Some checks failed
Sync dev → Gitea / Mirror dev to Gitea (push) Has been cancelled
Commits merged: - fix(FN-217): fix import sort order (lint) - fix(FN-217): convert @sase/shared to emit ESM for Vite/Rollup build compatibility - fix(FN-217): lazy-load canvas-confetti via dynamic import to avoid bloating subscription bundle Files changed: apps/web/src/routes/dashboard/subscription/index.tsx | 13 +++++++------ apps/web/src/routes/pricing.tsx | 2 +- packages/shared/package.json | 5 +++-- packages/shared/tsconfig.json | 4 ++-- 4 files changed, 13 insertions(+), 11 deletions(-) Fusion-Task-Id: FN-217
28 lines
518 B
JSON
28 lines
518 B
JSON
{
|
|
"name": "@sase/shared",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"dependencies": {
|
|
"zod": "^3.24.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.0.0",
|
|
"typescript": "^5.7.0"
|
|
}
|
|
}
|