20 lines
482 B
JSON
Raw Normal View History

{
"name": "@customer-portal/shared",
"version": "1.0.0",
"description": "Shared types and utilities for customer portal",
2025-08-27 10:54:05 +09:00
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit",
"test": "echo \"No tests specified for shared package\"",
2025-08-22 17:02:49 +09:00
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"typescript": "^5.9.2"
}
}