-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.16 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.16 KB
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
69
70
71
72
73
74
75
76
{
"name": "react-effect-typewriter",
"private": false,
"version": "1.0.1",
"type": "module",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"homepage": "https://MTG2000.github.io/react-effect-typewriter",
"author": "Mohammed Taher Ghazal <mtg.software.dev@gmail.com>",
"license": "MIT",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/MTG2000/react-effect-typewriter"
},
"scripts": {
"dev": "vite",
"build": "tsc --p ./tsconfig-build.json && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest",
"prepublishOnly": "npm run build",
"publishPatch": "npm version patch && npm publish",
"build-demo": "vite build --config vite.config.demo.ts",
"predeploy-demo": "npm run build-demo",
"deploy-demo": "gh-pages -d demo"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@types/react": "^18.2.66",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"gh-pages": "^6.1.1",
"happy-dom": "^14.3.9",
"postcss": "^8.4.38",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-preserve-directives": "^0.4.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vite-plugin-dts": "^3.7.3",
"vite-plugin-lib-inject-css": "^2.1.0-beta.0",
"vitest": "^1.4.0"
},
"sideEffects": [
"*.css"
],
"dependencies": {
"react-copy-to-clipboard": "^5.1.0"
},
"keywords": [
"typewriter",
"typewriter effect",
"react",
"react typewriter",
"react typewriter effect"
]
}