Files
vps-tracker/packages/shared/package.json
T
DenozordecandCursor 9df91bf2cc
Docker / build (push) Has been cancelled
fix(build): сборка @cfdm/db и @cfdm/shared в dist для production
Node в Docker не мог импортировать .ts из workspace-пакетов; exports
переключены на dist, добавлен tsc build и сборка в Dockerfile.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-27 23:36:15 +07:00

40 lines
826 B
JSON

{
"name": "@cfdm/shared",
"version": "0.0.0",
"private": true,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./contracts/*": {
"types": "./dist/contracts/*.d.ts",
"default": "./dist/contracts/*.js"
},
"./types/*": {
"types": "./dist/types/*.d.ts",
"default": "./dist/types/*.js"
},
"./geo": {
"types": "./dist/geo/index.d.ts",
"default": "./dist/geo/index.js"
},
"./geo/*": {
"types": "./dist/geo/*.d.ts",
"default": "./dist/geo/*.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.json"
},
"dependencies": {
"zod": "^3.25.0"
},
"devDependencies": {
"typescript": "^5.9.2"
}
}