-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.81 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.81 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
{
"name": "react-input-buffer",
"version": "1.0.0",
"description": "High-performance React library that prevents Main Thread DDoS from 8,000Hz gaming peripherals by intelligently buffering input events",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "eslint src --ext .ts,.tsx",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"react",
"performance",
"input",
"events",
"gaming",
"high-polling-rate",
"8000hz",
"requestAnimationFrame",
"event-buffering",
"fps",
"inp"
],
"author": "Taijul Aman <taijul-aman>",
"license": "MIT",
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/react": "^14.1.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitest/coverage-v8": "^1.2.0",
"eslint": "^8.56.0",
"jsdom": "^27.4.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rollup": "^4.9.5",
"rollup-plugin-dts": "^6.1.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vitest": "^1.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/TAIJULAMAN/react-input-buffer-package.git"
},
"bugs": {
"url": "https://github.com/TAIJULAMAN/react-input-buffer-package/issues"
},
"homepage": "https://github.com/TAIJULAMAN/react-input-buffer-package#readme"
}