- 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.
21 lines
496 B
JSON
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"
|
|
}
|
|
}
|