-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.19 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
{
"name": "react-ts-typewriter",
"version": "0.1.8b",
"description": "React typewriter component written in TypeScript with React 18",
"main": "dist/Typewriter.js",
"types": "dist/Typewriter.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/gerardmarquinarubio/ReactTypewriter.git"
},
"keywords": [
"react",
"typescript",
"types",
"components"
],
"type": "module",
"author": "Gerard Marquina Rubio",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/gerardmarquinarubio/ReactTypewriter/issues"
},
"scripts": {
"test": "react-scripts test",
"clean": "rm -rf ./dist/",
"prepublish": "tsc && cp ./src/Typewriter.module.css ./dist/"
},
"homepage": "https://github.com/gerardmarquinarubio/ReactTypewriter#readme",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/jest": "^29.2.5",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"jest": "^29.0.0",
"react-scripts": "^5.0.1",
"typescript": "^4.7.4"
}
}