mirror of
https://github.com/MAKS-IT-COM/maksit-webui.git
synced 2026-07-01 20:36:41 +02:00
45 lines
1.2 KiB
JSON
45 lines
1.2 KiB
JSON
{
|
|
"name": "@maks-it.com/webui-contracts",
|
|
"version": "0.2.0",
|
|
"description": "Shared TypeScript contracts for MaksIT WebUI apps",
|
|
"type": "module",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup src/index.ts --format esm,cjs --dts --clean --tsconfig tsconfig.build.json",
|
|
"test": "jest --config ../../jest.config.cjs --testPathPatterns packages/contracts",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/MAKS-IT-COM/maksit-webui.git",
|
|
"directory": "src/packages/contracts"
|
|
},
|
|
"peerDependencies": {
|
|
"zod": "^4.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"tsup": "^8.5.1",
|
|
"typescript": "^6.0.3",
|
|
"zod": "^4.4.3"
|
|
}
|
|
}
|