-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (44 loc) · 1.08 KB
/
package.json
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
{
"name": "@novu/api",
"version": "0.6.2",
"author": "Novu",
"description": "The <Inbox /> infrastructure for modern products",
"bin": {
"mcp": "bin/mcp-server.js"
},
"main": "./index.js",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/novuhq/novu-ts.git"
},
"scripts": {
"lint": "eslint --cache --max-warnings=0 src",
"build:mcp": "bun src/mcp-server/build.mts",
"build": "npm run build:mcp && tsc",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@modelcontextprotocol/sdk": "^1.5.0",
"zod": ">= 3"
},
"peerDependenciesMeta": {
"@modelcontextprotocol/sdk": {"optional":true}
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@modelcontextprotocol/sdk": "^1.5.0",
"@stricli/core": "^1.1.1",
"@types/express": "^4.17.21",
"bun": "^1.2.2",
"bun-types": "^1.2.2",
"eslint": "^9.19.0",
"express": "^4.21.2",
"globals": "^15.14.0",
"typescript": "^5.4.5",
"typescript-eslint": "^8.22.0",
"zod": "^3.23.4"
},
"dependencies": {
}
}