Files
zeavis-edu/packages/shared/package.json
T
Asep Haryana Saputra ab81168be7 chore: update dependencies and build scripts
- Updated @moonrepo/cli to version 2.2.5 and typescript to version 6.0.3 in package.json and shared package.json.
- Modified build script in package.json to run shared, api, and web builds.
- Removed unnecessary type and language declarations from shared moon.yml.
- Added ignoreDeprecations option in tsconfig.base.json to handle TypeScript 6.0 deprecations.
2026-05-22 18:30:40 +00:00

24 lines
482 B
JSON

{
"name": "@zeavis/shared",
"version": "0.1.0",
"private": true,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./app-status": {
"types": "./dist/app-status.d.ts",
"default": "./dist/app-status.js"
}
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"typecheck": "tsc --project tsconfig.json"
},
"devDependencies": {
"typescript": "^6.0.3"
}
}