38 lines
900 B
JSON
38 lines
900 B
JSON
{
|
|
"name": "@goosefactory/shared",
|
|
"version": "1.0.0",
|
|
"description": "GooseFactory shared types, constants, and Zod schemas — canonical source of truth from CONTRACTS.md",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./types": {
|
|
"types": "./dist/types/index.d.ts",
|
|
"import": "./dist/types/index.js"
|
|
},
|
|
"./constants": {
|
|
"types": "./dist/constants/index.d.ts",
|
|
"import": "./dist/constants/index.js"
|
|
},
|
|
"./schemas": {
|
|
"types": "./dist/schemas/index.d.ts",
|
|
"import": "./dist/schemas/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"zod": "^3.24.4"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|