-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.03 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
{
"name": "stick-drift-detect",
"version": "1.0.1",
"description": "Pure, zero-dependency stick-drift verdict logic for the Gamepad API — feed raw (x,y) samples, get a PASS / DRIFTING / FAIL verdict. The verdict engine behind controllertester.co.",
"type": "module",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js"
}
},
"files": [
"index.js",
"index.d.ts",
"README.md",
"LICENSE"
],
"keywords": [
"gamepad",
"controller",
"gamepad-api",
"stick-drift",
"joystick",
"drift",
"deadzone",
"analog-stick",
"game-controller",
"controller-test"
],
"homepage": "https://controllertester.co",
"repository": {
"type": "git",
"url": "git+https://github.com/gannasong/stick-drift-detect.git"
},
"bugs": {
"url": "https://github.com/gannasong/stick-drift-detect/issues"
},
"author": "controllertester.co",
"license": "MIT",
"sideEffects": false
}