-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
100 lines (100 loc) · 2.8 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
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
99
100
{
"name": "@mendable/data-connectors",
"version": "0.0.50",
"description": "Data connectors for LLMs. Made by Mendable.ai",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build-tsup": "tsup",
"pre-publish": "npm run test",
"publish": "npm run build-tsup && npm publish --access public",
"beta-publish": "npm run build-tsup && npm publish --tag beta --access public",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
"prepare": "npm run build",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"run-example": "npx ts-node src/example.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mendableai/data-connectors.git"
},
"keywords": [
"llm",
"ai",
"data connectors",
"boilerplate",
"typescript"
],
"author": "Mendable AI",
"license": "MIT",
"bugs": {
"url": "https://github.com/mendableai/data-connectors/issues"
},
"homepage": "https://github.com/mendableai/data-connectors#readme",
"devDependencies": {
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "^7.23.3",
"@types/dotenv": "^8.2.0",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/he": "^1.2.3",
"@types/jest": "^29.5.11",
"@types/pdf-parse": "^1.1.4",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "6.19.1",
"@typescript-eslint/parser": "6.19.1",
"babel-jest": "^29.7.0",
"cross-env": "^7.0.3",
"eslint": "8.35.0",
"eslint-plugin-jest": "27.2.1",
"jest": "^29.7.0",
"prettier": "2.8.4",
"ts-jest": "^29.1.1",
"typescript": "4.9.5"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@nangohq/node": "^0.36.100",
"@notionhq/client": "^2.2.14",
"@octokit/auth-oauth-user": "^4.0.1",
"async": "^3.2.5",
"axios": "^1.6.5",
"cheerio": "^1.0.0-rc.12",
"confluence.js": "^1.7.2",
"dotenv": "^16.4.1",
"fluent-ffmpeg": "^2.1.2",
"form-data": "^4.0.0",
"glob": "^10.3.10",
"googleapis": "^131.0.0",
"he": "^1.2.0",
"jira.js": "^3.0.2",
"mammoth": "^1.6.0",
"node-html-parser": "^6.1.12",
"octokit": "^3.1.2",
"onedrive-api": "^1.1.1",
"openai": "^4.13.0",
"pdf-parse": "^1.1.1",
"puppeteer": "^21.10.0",
"scrapingbee": "^1.7.4",
"tsup": "^8.0.1",
"turndown": "^7.1.3",
"xlsx": "^0.18.5",
"xml2js": "^0.6.2",
"youtube-transcript": "^1.2.1"
},
"nodemonConfig": {
"ignore": [
"*.docx",
"*.json"
]
}
}