33 lines
709 B
JSON
33 lines
709 B
JSON
{
|
|
"name": "@insforge/shared-schemas",
|
|
"version": "1.2.0",
|
|
"author": "Insforge",
|
|
"description": "Shared TypeScript schemas for InsForge frontend and backend",
|
|
"license": "Apache-2.0",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"typecheck": "tsc --noEmit",
|
|
"prepare": "npm run build",
|
|
"prepublishOnly": "npm run build",
|
|
"lint": "eslint ."
|
|
},
|
|
"dependencies": {
|
|
"zod": "^3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.3.3"
|
|
}
|
|
} |