This repository was archived by the owner on Oct 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.63 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.63 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
{
"name": "typeit-react",
"version": "2.0.4",
"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.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "microbundle -i src/index.tsx -o dist/index.js --name TypeIt --no-sourcemap --jsx React.createElement && scripts/banner",
"watch": "microbundle -i src/index.tsx -o dist/index.js --name TypeIt --format umd --no-sourcemap --jsx React.createElement watch",
"prettier": "prettier --write \"**/*.{md,js}\"",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"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 <alex@macarthur.me> (https://macarthur.me)",
"license": "GPL-3.0",
"dependencies": {
"@types/react": "^17.0.32"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.15.0",
"husky": "^7.0.4",
"lint-staged": "^11.2.4",
"microbundle": "^0.14.1",
"prettier": "^2.4.1",
"typeit": "^8.0.4",
"typescript": "^4.4.4"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}