25 lines
697 B
JSON
Raw Normal View History

{
"name": "@customer-portal/shared",
"version": "1.0.0",
"description": "Shared types and utilities for customer portal",
"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-21 15:24:40 +09:00
"lint": "eslint \"src/**/*.{ts,tsx}\" || true",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix"
},
"devDependencies": {
2025-08-21 15:24:40 +09:00
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"eslint": "^9.33.0",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2",
"typescript": "^5.9.2"
}
}