maksit-webui/src/packages/core/package.json
Maksym Sadovnychyy 2c18605699 (feature): init
2026-05-24 12:07:27 +02:00

53 lines
1.3 KiB
JSON

{
"name": "@maksit/webui-core",
"version": "0.1.0",
"description": "Shared utilities and hooks 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",
"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/core"
},
"dependencies": {
"@maksit/webui-contracts": "^0.1.0",
"date-fns": "^4.1.0"
},
"peerDependencies": {
"axios": "^1.7.0",
"react": "^18.0.0 || ^19.0.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@types/react": "^19.2.14",
"axios": "^1.13.2",
"react": "^19.2.4",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"zod": "^4.3.6"
}
}