Files
mono/components/notifications/package.json
T
Alex Ant 9029fa1f9d
Build bootstrap container / build (push) Successful in 3m17s
Release / release (push) Successful in 25m39s
Release / publish-docs (push) Failing after 9m10s
Release / trigger-coopenomics-docs (push) Failing after 5s
Release / publish-packages (push) Failing after 9m23s
chore(release): publish
2026-05-25 12:41:40 +05:00

57 lines
1.3 KiB
JSON

{
"name": "@coopenomics/notifications",
"version": "2026.5.25-3",
"description": "Библиотека типобезопасных workflow-уведомлений для Novu",
"type": "module",
"private": false,
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"scripts": {
"build": "unbuild",
"dev": "unbuild --watch",
"clean": "rm -rf dist",
"sync": "node ./dist/sync/sync-runner.cjs",
"sync:dev": "node ./dist/sync/sync-runner.cjs --dev",
"sync:watch": "node ./dist/sync/sync-runner.cjs --dev",
"test": "vitest run"
},
"dependencies": {
"axios": "^1.7.7",
"dotenv": "^17.1.0",
"transliteration": "^2.3.5",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.5"
},
"devDependencies": {
"@types/chokidar": "^2.1.3",
"@types/node": "^20.0.0",
"chokidar": "^3.6.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"unbuild": "^2.0.0",
"vitest": "^4.0.18"
},
"bin": {
"novu-sync": "./dist/sync/sync-runner.cjs"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
}
}