-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.53 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
63
64
{
"name": "react-mk",
"version": "1.1.6",
"description": "A light weight React component for emulating keyboard typing.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"test": "vitest",
"coveralls": "vitest --coverage && cat ./coverage/lcov.info | coveralls",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/typekev/react-mk.git"
},
"keywords": [
"react",
"mechanical",
"keyboard",
"typist",
"type",
"typing",
"animation",
"animated",
"typewriter"
],
"author": "Kevin Gonzalez <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/typekev/react-mk/issues"
},
"dependencies": {
"@emotion/css": "^11.11.2"
},
"peerDependencies": {
"react": ">=16.8"
},
"devDependencies": {
"@happy-dom/global-registrator": "^14.12.3",
"@testing-library/dom": "^10.3.0",
"@testing-library/react": "^16.0.0",
"@types/react": "^18.3.3",
"@typescript-eslint/parser": "^7.15.0",
"@vitest/coverage-v8": "^1.6.0",
"coveralls": "^3.1.1",
"eslint": "^9.6.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.0.11",
"jsdom": "^24.1.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"prettier-eslint-cli": "^8.0.1",
"react": ">=18.3",
"react-dom": "^18.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"typescript-eslint": "^7.15.0",
"vitest": "^1.6.0"
}
}