create qr-codes by tg bot
Deploy app frontend / app frontend (push) Failing after 48s
Deploy db-migrations / db-migrations (push) Failing after 35s
Deploy service message-delivery-method-web-push / service message-delivery-method-web-push (push) Failing after 53s

This commit is contained in:
2024-12-10 13:21:38 +02:00
parent e9b3df38fe
commit 1810c550ba
91 changed files with 3317 additions and 1909 deletions
+8 -6
View File
@@ -1,19 +1,21 @@
{
"name": "@hereconnect/types",
"version": "1.0.0",
"main": "src/index.ts",
"types": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./src/index.ts",
"default": "./src/index.ts"
"import": "./dist/index.d.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": ["src/**/*"],
"files": ["dist/**/*"],
"private": true,
"scripts": {
"lint": "tsc --noEmit src/index.ts",
"build": "pnpm run lint"
"build": "tsc",
"prepare": "npm run build"
},
"peerDependencies": {
"typescript": "~5.6.3",