-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 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
{
"name": "react-typed.ts",
"version": "1.0.9",
"private": false,
"description": "A lightweight React component for creating a typing effect similar to Typewriter, without any external dependencies.",
"main": "dist/bundle.js",
"module": "dist/bundle.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"keywords": [
"react-typing-effect",
"typed.ts",
"react",
"typing",
"effect",
"typewriter",
"animation",
"component",
"typescript"
],
"author": "Sivamani-18",
"license": "MIT",
"homepage": "https://github.com/Sivamani-18/typed.ts",
"repository": {
"type": "git",
"url": "https://github.com/Sivamani-18/typed.ts.git"
},
"dependencies": {
"@types/prop-types": "^15.7.5",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"rollup": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.35.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"tslib": "^2.6.0"
}
}