-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "gptscript-browser-plugin",
"version": "1.0.0",
"description": "## Project Description",
"main": "index.js",
"directories": {
"example": "examples"
},
"scripts": {
"dev": "tsnd --respawn src/server.ts",
"server": "ts-node src/server.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.41.2",
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@gptscript-ai/gptscript": "^0.4.0",
"@types/turndown": "^5.0.4",
"async-mutex": "^0.5.0",
"body-parser": "^1.20.2",
"cheerio": "^1.0.0-rc.12",
"env-paths": "^3.0.0",
"express": "^4.18.2",
"global-cache-dir": "^6.0.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"turndown": "^7.1.3"
}
}