Files
cfw-autumn/shared/package.json
John Yeo af70142708 refactor: remove unused files and update logging structure
- Deleted unused configuration and SQL files related to Drizzle.
- Removed deprecated logging methods and updated logging to use a unified structure.
- Cleaned up package dependencies by removing unused packages from package.json and package-lock.json.
- Updated various import paths for consistency and clarity.
- Introduced new action and event models to enhance analytics capabilities.
2025-05-29 14:10:04 +01:00

28 lines
657 B
JSON

{
"name": "@autumn/shared",
"type": "module",
"version": "1.0.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"db:generate": "NODE_OPTIONS='--import tsx' drizzle-kit generate --config drizzle.config.ts",
"db:migrate": "NODE_OPTIONS='--import tsx' drizzle-kit migrate --config drizzle.config.ts"
},
"dependencies": {
"drizzle-orm": "^0.43.1",
"drizzle-zod": "^0.8.1",
"zod": "^3.25.23"
},
"devDependencies": {
"tsx": "^4.19.4",
"typescript": "^5.7.2"
}
}