-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
65 lines (65 loc) · 1.94 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
{
"name": "talk-guidance-gpt",
"version": "1.1.3",
"description": "TalkGuidanceGPT is a screen reader that powered by GPT, which designed to make web browsing more accessible for visually impaired users.",
"author": "Koh Hom",
"repository": "https://github.com/clean99/TalkGuidanceGPT",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "webpack",
"start": "webpack --watch",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx src",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\""
},
"keywords": [
"gpt",
"screen reader",
"web accessibility",
"web",
"chatgpt"
],
"license": "Creative Commons Attribution-NonCommercial 3.0 Singapore License",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@hot-loader/react-dom": "^17.0.0-rc.2",
"@testing-library/dom": "^9.0.1",
"@types/chrome": "^0.0.224",
"@types/jest": "^29.5.0",
"@types/jquery": "^3.5.16",
"@types/lodash": "^4.14.191",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.2.1",
"css-loader": "^5.0.0",
"eslint": "^8.36.0",
"eslint-plugin-react": "^7.32.2",
"file-loader": "^6.1.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jsdom": "^21.1.1",
"style-loader": "^2.0.0",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"url-loader": "^4.1.1",
"webpack": "^5.1.3",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"gpt-prompt-kit": "^1.1.2",
"jquery": "^3.6.4",
"lodash": "^4.17.21",
"openai": "^3.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0"
}
}