-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (67 loc) · 1.77 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
{
"name": "chatgpt-app",
"version": "1.0.4",
"description": "基于react、webSocket开发的类ChatGPT组件",
"main": "dist/cjs.js",
"module": "dist/esm.js",
"files": [
"dist/*.css",
"dist/*.js",
"dist/**/*.ts"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup --config"
},
"keywords": [
"chatgpt",
"react",
"webSocket",
"chat-online",
"component"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-image": "^3.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@types/react": "16.9.0",
"@types/react-dom": "16.9.0",
"less": "^4.1.3",
"rollup": "^3.20.2",
"rollup-plugin-less": "^1.1.3",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^5.0.2"
},
"dependencies": {
"axios": "^1.3.4",
"classnames": "^2.3.2",
"react": "16.9.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "16.9.0",
"reconnecting-websocket": "^4.4.0",
"uid": "^2.0.1"
},
"peerDependencies": {
"axios": ">=1",
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"type": "module",
"types": "dist/index.d.ts",
"homepage": "https://github.com/cmux/chatgpt-app",
"repository": {
"type": "git",
"url": "[email protected]:cmux/chatgpt-app.git"
},
"bugs": {
"url": "https://github.com/cmux/chatgpt-app/issues"
}
}