-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.29 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
{
"name": "lite-pointer-tracker",
"author": "Zahary Shinikchiev <shinikchiev@yahoo.com>",
"version": "1.0.2",
"description": "Lightweight pointer events manager — unifies mouse, touch, and pen into a clean start/move/end API with ghost-drag detection and pointer capture.",
"type": "module",
"main": "PointerTracker.js",
"types": "PointerTracker.d.ts",
"exports": {
".": {
"types": "./PointerTracker.d.ts",
"import": "./PointerTracker.js",
"default": "./PointerTracker.js"
}
},
"files": [
"PointerTracker.js",
"PointerTracker.d.ts",
"llms.txt",
"README.md"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"pointer",
"pointer-events",
"touch",
"mouse",
"pen",
"stylus",
"drag",
"tracker",
"canvas",
"lightweight",
"gesture"
],
"license": "MIT",
"homepage": "https://github.com/PeshoVurtoleta/lite-pointer-tracker#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/PeshoVurtoleta/lite-pointer-tracker.git"
},
"bugs": {
"url": "https://github.com/PeshoVurtoleta/lite-pointer-tracker/issues",
"email": "shinikchiev@yahoo.com"
},
"devDependencies": {
"vitest": "^1.0.0"
},
"engines": {
"node": ">=16.0.0"
}
}