-
Notifications
You must be signed in to change notification settings - Fork 202
/
Copy pathpackage.json
62 lines (62 loc) · 1.54 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "typeit-react",
"version": "2.7.8",
"description": "React component for the most versatile JavaScript animated typing utility on the planet.",
"homepage": "https://typeitjs.com",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "vite build && tsc",
"tsc": "tsc",
"start": "vite serve examples",
"prettier": "prettier --write \"**/*.{md,js}\"",
"test": "vitest run src",
"prepare": "npm run build"
},
"files": [
"dist/",
"src/",
"package-lock.json"
],
"bugs": {
"url": "https://github.com/alexmacarthur/typeit-react/issues"
},
"keywords": [
"javascript",
"animated",
"typing effect",
"typewriter effect",
"type effect",
"text effects",
"react"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alexmacarthur/typeit-react.git"
},
"author": "Alex MacArthur <[email protected]> (https://macarthur.me)",
"license": "GPL-3.0",
"dependencies": {
"@types/react-dom": "^19.0.2",
"typeit": "^8.8.7"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.26.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/react": "^19.0.3",
"jsdom": "^25.0.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"terser": "^5.37.0",
"typescript": "^5.7.2",
"vite": "^6.0.7",
"vitest": "^2.1.8",
"vitest-dom": "^0.1.1"
}
}