-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.76 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.76 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "react-mk",
"version": "2.0.0",
"type": "module",
"description": "A lightweight, zero-dependency React typewriter component with realistic typing animations.",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
}
},
"sideEffects": false,
"files": [
"lib"
],
"scripts": {
"test": "vitest",
"test:run": "vitest run",
"coveralls": "vitest --coverage && cat ./coverage/lcov.info | coveralls",
"clean": "rm -rf lib",
"build": "rm -rf lib && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/typekev/react-mk.git"
},
"keywords": [
"react",
"typewriter",
"typing",
"animation",
"animated",
"keyboard",
"mechanical",
"typist",
"hook",
"cursor"
],
"author": "Kevin Gonzalez <kevin@keving.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/typekev/react-mk/issues"
},
"peerDependencies": {
"react": ">=18"
},
"devDependencies": {
"@happy-dom/global-registrator": "^20.8.3",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.14",
"@typescript-eslint/parser": "^8.56.1",
"@vitest/coverage-v8": "^4.0.18",
"coveralls": "^3.1.1",
"eslint": "^10.0.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^16.3.1",
"prettier": "^3.8.1",
"prettier-eslint-cli": "^8.0.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
}
}