-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 817 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 817 Bytes
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
{
"name": "faq-generator",
"version": "1.0.0",
"description": "Simple webpage that receives a URL and creates an automatic FAQ with it or completes a given FAQ file (support for excel and images)",
"main": "dist/server.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/server.ts",
"start": "node dist/server.js"
},
"keywords": ["faq", "generator", "copilot", "ai"],
"author": "",
"license": "MIT",
"dependencies": {
"@github/copilot-sdk": "^0.1.23",
"express": "^4.21.2",
"cheerio": "^1.0.0",
"node-fetch": "^3.3.2",
"multer": "^2.0.2",
"exceljs": "^4.4.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/multer": "^1.4.12",
"@types/node": "^22.10.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}