-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.37 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 3.37 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@openmouse/protocol",
"version": "0.1.0",
"description": "Gaming mouse protocol codecs and WebHID drivers used by OpenMouse.",
"type": "module",
"files": [
"dist",
"README.md",
"CONTRIBUTING.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./atk": {
"types": "./dist/atk/index.d.ts",
"import": "./dist/atk/index.js"
},
"./endgame-gear-we": {
"types": "./dist/endgame-gear/wireless.d.ts",
"import": "./dist/endgame-gear/wireless.js"
},
"./endgame-gear-op1": {
"types": "./dist/endgame-gear/op1.d.ts",
"import": "./dist/endgame-gear/op1.js"
},
"./finalmouse": {
"types": "./dist/finalmouse/index.d.ts",
"import": "./dist/finalmouse/index.js"
},
"./fantech": {
"types": "./dist/fantech/index.d.ts",
"import": "./dist/fantech/index.js"
},
"./keychron": {
"types": "./dist/keychron/index.d.ts",
"import": "./dist/keychron/index.js"
},
"./lamzu": {
"types": "./dist/lamzu/index.d.ts",
"import": "./dist/lamzu/index.js"
},
"./logitech": {
"types": "./dist/logitech/index.d.ts",
"import": "./dist/logitech/index.js"
},
"./moddo": {
"types": "./dist/moddo/index.d.ts",
"import": "./dist/moddo/index.js"
},
"./ninjutso": {
"types": "./dist/ninjutso/index.d.ts",
"import": "./dist/ninjutso/index.js"
},
"./orbital": {
"types": "./dist/orbital/index.d.ts",
"import": "./dist/orbital/index.js"
},
"./pulsar": {
"types": "./dist/pulsar/index.d.ts",
"import": "./dist/pulsar/index.js"
},
"./razer": {
"types": "./dist/razer/index.d.ts",
"import": "./dist/razer/index.js"
},
"./razer-devices": {
"types": "./dist/razer/devices.d.ts",
"import": "./dist/razer/devices.js"
},
"./razer-v4": {
"types": "./dist/razer/v4.d.ts",
"import": "./dist/razer/v4.js"
},
"./teevolution": {
"types": "./dist/teevolution/index.d.ts",
"import": "./dist/teevolution/index.js"
},
"./vgn": {
"types": "./dist/vgn/index.d.ts",
"import": "./dist/vgn/index.js"
},
"./wallhack": {
"types": "./dist/wallhack/index.d.ts",
"import": "./dist/wallhack/index.js"
},
"./wlmouse": {
"types": "./dist/wlmouse/index.d.ts",
"import": "./dist/wlmouse/index.js"
},
"./zaunkoenig": {
"types": "./dist/zaunkoenig/index.d.ts",
"import": "./dist/zaunkoenig/index.js"
},
"./drivers": {
"types": "./dist/drivers/index.d.ts",
"import": "./dist/drivers/index.js"
},
"./drivers/*": {
"types": "./dist/drivers/*.d.ts",
"import": "./dist/drivers/*.js"
}
},
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "npm run clean && tsc -p tsconfig.json",
"test": "tsx --test \"src/**/*.test.ts\"",
"check": "npm run build && npm test && npm pack --dry-run",
"prepare": "npm run build"
},
"devDependencies": {
"tsx": "^4.23.11",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenMouse-Project/mouse-protocol.git"
},
"sideEffects": [
"./dist/drivers/orbital/host-protocol.js"
]
}