-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.63 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
{
"author": "Luis Blanco <luisblanco1337@gmail.com>",
"name": "@node-3d/deps-uiohook",
"version": "1.0.0",
"description": "Binaries and headers for libUIOHook-dependent compilation",
"license": "MIT",
"main": "index.js",
"keywords": [
"dependency",
"libuiohook",
"uiohook",
"binary",
"library",
"headers",
"lib",
"c++",
"addon",
"bindings",
"native",
"gyp"
],
"files": [
"include",
"index.js",
"index.d.ts",
"install.js",
"LIBUIOHOOK_LGPL.md",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"postinstall": "node install.js",
"test": "npm run test:watch",
"test:watch": "node --test --watch \"test/**/*.test.js\"",
"test-ci": "npm run test:ci",
"test:ci": "node --test \"test/**/*.test.js\"",
"lint": "npm run lint:all",
"lint:oxlint": "oxlint .",
"lint:all": "npm run lint:oxlint",
"format:ts": "oxfmt -c ./oxfmt.config.ts --no-error-on-unmatched-pattern \"**/*.{js,jsx,ts,tsx}\"",
"format:ci": "oxfmt -c ./oxfmt.config.ts --check --no-error-on-unmatched-pattern \"**/*.{js,jsx,ts,tsx}\""
},
"engines": {
"node": ">=24.13.0",
"npm": ">=11.6.2"
},
"repository": {
"type": "git",
"url": "https://github.com/node-3d/deps-uiohook.git"
},
"dependencies": {
"@node-3d/addon-tools": "^10.0.0"
},
"devDependencies": {
"oxlint": "1.72.0",
"tslib": "2.8.1",
"oxfmt": "0.57.0"
},
"type": "module",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"bugs": {
"url": "https://github.com/node-3d/node-3d/issues"
},
"homepage": "https://github.com/node-3d/node-3d#readme",
"publishConfig": {
"access": "public"
}
}