Files
davinci-platform/packages/shared/package.json
KinSun 9d5616fdc6 feat: add initial project configuration and smoke tests
- Created pnpm workspace configuration to manage packages.
- Added a placeholder .gitkeep file in the scripts directory.
- Implemented a smoke test script to validate core API and web endpoints.
- Established TypeScript base configuration for consistent compilation settings.
- Introduced Turbo configuration for task management and build processes.
2026-03-13 10:30:16 +08:00

21 lines
496 B
JSON

{
"name": "@davinci/shared",
"version": "0.1.0-alpha.0",
"description": "Davinci Platform — shared types, DTOs, and constants",
"author": "Galaxis",
"private": true,
"license": "UNLICENSED",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "vitest run",
"test:unit": "vitest run",
"test:cov": "vitest run --coverage"
},
"devDependencies": {
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}