Files
zeavis-edu/packages/shared/package.json
T

24 lines
482 B
JSON
Raw Normal View History

2026-05-22 12:17:13 +00:00
{
"name": "@zeavis/shared",
"version": "0.1.0",
"private": true,
"type": "module",
"exports": {
2026-05-22 12:19:33 +00:00
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./app-status": {
"types": "./dist/app-status.d.ts",
"default": "./dist/app-status.js"
}
2026-05-22 12:17:13 +00:00
},
"scripts": {
2026-05-22 12:19:33 +00:00
"build": "tsc --project tsconfig.build.json",
2026-05-22 12:17:13 +00:00
"typecheck": "tsc --project tsconfig.json"
},
"devDependencies": {
"typescript": "^6.0.3"
2026-05-22 12:17:13 +00:00
}
}