-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.59 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.59 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
{
"name": "@frontegg/ai-sdk",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18.16.0"
},
"scripts": {
"build": "rm -rf dist && tsc",
"build:watch": "rm -rf dist && tsc --watch",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"format": "prettier --write \"**/*.+(js|ts|json)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/frontegg/frontegg-ai-typescript-sdk.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/frontegg/frontegg-ai-typescript-sdk/issues"
},
"homepage": "https://github.com/frontegg/frontegg-ai-typescript-sdk#readme",
"description": "",
"dependencies": {
"@frontegg/client": "^5.3.2",
"@langchain/mcp-adapters": "^0.4.2",
"@modelcontextprotocol/sdk": "1.10.1",
"axios": "^1.7.9",
"winston": "^3.17.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/node": "18.16.9",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"semantic-release": "^24.2.3",
"typescript": "^5.7.2",
"prettier": "^3.5.3"
},
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"publishConfig": {
"access": "public"
}
}