forked from yaroslav-n/tweetGPT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 861 Bytes
/
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
{
"name": "twitter-gpt",
"version": "2.0.1",
"description": "A chrome extension that writes tweets with chatGPT",
"main": "lib/background.js",
"author": "Yaroslav https://twitter.com/512x512",
"license": "MIT",
"scripts": {
"build": "yarn clean && webpack",
"watch": "yarn clean && webpack -w",
"clean": "rm -rf ./lib/*",
"package": "rm -f ./extension.zip && yarn build && zip -r -X extension.zip *"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.10",
"typescript": "^4.9.3"
},
"devDependencies": {
"@types/chrome": "^0.0.203",
"@types/node": "^18.11.11",
"@types/react": "^18.0.38",
"@types/react-dom": "^18.0.11",
"@types/styled-components": "^5.1.26",
"ts-loader": "^9.4.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}