-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 929 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
31
32
33
34
35
36
37
38
39
{
"name": "react-aiwriter",
"version": "1.0.0",
"description": "Typewriter effect inspired by ChatGPT ⌨️",
"repository": "https://github.com/mxmzb/react-aiwriter",
"author": "Maxim Zubarev",
"license": "MIT",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p .",
"build:watch": "tsc --watch -p .",
"test": "echo \"Error: no test specified\" && exit 1",
"release": "release-it"
},
"devDependencies": {
"@types/react": "^18.0.26",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"prettier": "^2.8.1",
"prettier-eslint": "^15.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.4"
},
"packageManager": "[email protected]",
"files": [
"dist",
"example"
],
"keywords": [
"react",
"typewriter",
"typewriter effect",
"react typewriter",
"openai",
"chatgpt"
]
}