-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.99 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@vllnt/convex-notifications",
"version": "0.1.0",
"description": "Per-subject directed inbox — deliver notifications with read/unread state and fan-out as a Convex component",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@9.15.4",
"files": [
"dist",
"src"
],
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/client/index.d.ts",
"default": "./dist/client/index.js"
},
"./test": "./src/test.ts",
"./_generated/component.js": {
"types": "./dist/component/_generated/component.d.ts"
},
"./_generated/component": {
"types": "./dist/component/_generated/component.d.ts"
},
"./convex.config": {
"types": "./dist/component/convex.config.d.ts",
"default": "./dist/component/convex.config.js"
},
"./convex.config.js": {
"types": "./dist/component/convex.config.d.ts",
"default": "./dist/component/convex.config.js"
}
},
"types": "./dist/client/index.d.ts",
"module": "./dist/client/index.js",
"scripts": {
"build": "tsc --project ./tsconfig.build.json",
"build:codegen": "pnpm convex codegen --component-dir ./src/component && pnpm build",
"build:clean": "rm -rf dist *.tsbuildinfo && pnpm build:codegen",
"typecheck": "tsc --noEmit",
"typecheck:ci": "tsc --noEmit --project tsconfig.ci.json",
"lint": "eslint .",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest --typecheck --clearScreen false",
"test:coverage": "vitest run --coverage --coverage.reporter=text",
"generate:llms": "node scripts/generate-llms.mjs",
"preversion": "pnpm install --frozen-lockfile && pnpm build && pnpm test:coverage && pnpm typecheck && pnpm generate:llms",
"prepublishOnly": "npm whoami || npm login",
"alpha": "npm version prerelease --preid alpha && npm publish --tag alpha && git push --follow-tags",
"release": "npm version patch && npm publish && git push --follow-tags"
},
"dependencies": {},
"peerDependencies": {
"convex": "^1.41.0"
},
"devDependencies": {
"@edge-runtime/vm": "^5.0.0",
"@vitest/coverage-v8": "^4.1.8",
"@vllnt/eslint-config": "^1.0.0",
"@vllnt/typescript": "^1.0.0",
"convex": "^1.41.0",
"convex-test": "^0.0.53",
"eslint": "^9.0.0",
"prettier": "^3.4.0",
"typescript": "^5.7.0",
"vitest": "^4.1.8"
},
"homepage": "https://github.com/vllnt/convex-notifications#readme",
"bugs": {
"url": "https://github.com/vllnt/convex-notifications/issues"
},
"author": {
"name": "bntvllnt",
"url": "https://bntvllnt.com"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/bntvllnt"
},
"repository": {
"type": "git",
"url": "https://github.com/vllnt/convex-notifications"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"keywords": [
"convex",
"convex-component",
"notifications",
"inbox",
"notification-center"
]
}