-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.34 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.34 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
{
"name": "@mcarlssen/typeon-react",
"version": "1.0.3",
"type": "module",
"description": "A simple, easily customizable React typewriter-effect component with no dependencies",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "npm run build"
},
"keywords": [
"react",
"typewriter",
"animation",
"text",
"typing",
"typescript"
],
"author": "Mike Thorn",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mcarlssen/typeon-react.git"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.3.1",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^3.29.5",
"ts-jest": "^29.3.2",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
},
"files": [
"dist"
]
}