-
Notifications
You must be signed in to change notification settings - Fork 202
/
package.json
61 lines (61 loc) · 1.5 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
{
"name": "typeit-react",
"version": "2.7.7",
"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": {
"typeit": "^8.8.7"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.25.9",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@types/react": "^18.3.12",
"jsdom": "^25.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"terser": "^5.36.0",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vitest": "^2.1.3",
"vitest-dom": "^0.1.1"
}
}