notifkit 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,20 @@
1
+ {
2
+ "version": "7",
3
+ "dialect": "postgresql",
4
+ "entries": [
5
+ {
6
+ "idx": 0,
7
+ "version": "7",
8
+ "when": 1786087159272,
9
+ "tag": "0000_spotty_jack_flag",
10
+ "breakpoints": true
11
+ },
12
+ {
13
+ "idx": 1,
14
+ "version": "7",
15
+ "when": 1786643990078,
16
+ "tag": "0001_stale_shotgun",
17
+ "breakpoints": true
18
+ }
19
+ ]
20
+ }
package/package.json ADDED
@@ -0,0 +1,110 @@
1
+ {
2
+ "name": "notifkit",
3
+ "version": "0.1.0",
4
+ "description": "Self-hosted notification infrastructure. One call delivers to email, SMS, push, and webhook — routed by preference, quiet hours, and consent.",
5
+ "license": "MIT",
6
+ "author": "devkitshq",
7
+ "homepage": "https://notifkit.dev",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/devkitshq/notifkit.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/devkitshq/notifkit/issues"
14
+ },
15
+ "keywords": [
16
+ "notifications",
17
+ "notification-system",
18
+ "email",
19
+ "sms",
20
+ "push-notifications",
21
+ "webhooks",
22
+ "self-hosted",
23
+ "queue",
24
+ "redis-streams",
25
+ "postgres",
26
+ "drizzle",
27
+ "transactional-email",
28
+ "user-preferences",
29
+ "quiet-hours",
30
+ "unsubscribe",
31
+ "multi-tenant",
32
+ "typescript"
33
+ ],
34
+ "workspaces": [
35
+ "packages/*"
36
+ ],
37
+ "type": "module",
38
+ "main": "dist/index.mjs",
39
+ "types": "dist/index.d.mts",
40
+ "exports": {
41
+ ".": {
42
+ "types": "./dist/index.d.mts",
43
+ "default": "./dist/index.mjs"
44
+ },
45
+ "./package.json": "./package.json"
46
+ },
47
+ "files": [
48
+ "dist",
49
+ "drizzle",
50
+ "README.md",
51
+ "LICENSE"
52
+ ],
53
+ "scripts": {
54
+ "build": "tsdown",
55
+ "dev": "tsdown --watch",
56
+ "test": "vitest run --coverage",
57
+ "test:watch": "vitest",
58
+ "lint": "eslint . --fix",
59
+ "typecheck": "tsc --noEmit",
60
+ "prepare": "husky",
61
+ "prepublishOnly": "npm run typecheck && npm run build"
62
+ },
63
+ "dependencies": {
64
+ "ai": "^7.0.37",
65
+ "dotenv": "^16.4.5",
66
+ "drizzle-orm": "^0.45.2",
67
+ "drizzle-zod": "^0.8.3",
68
+ "ioredis": "^5.4.1",
69
+ "pino": "^9.2.0",
70
+ "pino-pretty": "^11.0.0",
71
+ "postgres": "^3.4.4",
72
+ "prom-client": "^15.1.3",
73
+ "zod": "^3.23.8"
74
+ },
75
+ "devDependencies": {
76
+ "@commitlint/cli": "^19.3.0",
77
+ "@commitlint/config-conventional": "^19.2.2",
78
+ "@testcontainers/postgresql": "^12.0.4",
79
+ "@testcontainers/redis": "^12.0.4",
80
+ "@types/node": "^22.0.0",
81
+ "@types/supertest": "^7.2.1",
82
+ "@typescript-eslint/eslint-plugin": "^8.0.0",
83
+ "@typescript-eslint/parser": "^8.0.0",
84
+ "@vitest/coverage-v8": "^2.0.0",
85
+ "drizzle-kit": "^0.31.10",
86
+ "eslint": "^9.0.0",
87
+ "husky": "^9.0.11",
88
+ "lint-staged": "^15.2.5",
89
+ "prettier": "^3.3.0",
90
+ "supertest": "^7.2.2",
91
+ "testcontainers": "^12.0.4",
92
+ "tsdown": "^0.22.14",
93
+ "typescript": "^5.8.3",
94
+ "vitest": "^2.0.0"
95
+ },
96
+ "lint-staged": {
97
+ "*.{ts,tsx}": [
98
+ "eslint --fix",
99
+ "prettier --write"
100
+ ],
101
+ "*.{json,md,yaml,yml}": [
102
+ "prettier --write"
103
+ ]
104
+ },
105
+ "engines": {
106
+ "node": ">=22.0.0",
107
+ "npm": ">=10.0.0"
108
+ },
109
+ "packageManager": "npm@10.8.1"
110
+ }