-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.26 KB
/
package.json
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
{
"name": "tauri-plugin-gamepad-api",
"version": "0.0.5",
"author": "Eugene Hauptmann",
"homepage": "https://developermindset.com/tauri-plugin-gamepad/",
"repository": {"url": "https://github.com/eugenehp/tauri-plugin-gamepad"},
"description": "A plugin for Tauri that provides a polyfill for Gamepad Web API that works on most common platforms.",
"browser": "webview-dist/index.js",
"type": "module",
"types": "./dist-js/index.d.ts",
"main": "./dist-js/index.cjs",
"module": "./dist-js/index.js",
"exports": {
"types": "./dist-js/index.d.ts",
"import": "./dist-js/index.js",
"require": "./dist-js/index.cjs"
},
"files": [
"dist-js",
"!dist-js/**/*.map",
"README.md",
"LICENSE"
],
"keywords": [
"polyfill",
"api",
"rust",
"gamepad",
"gilrs",
"tauri",
"joystick"
],
"scripts": {
"build": "rollup -c",
"watch": "rollup -c --watch",
"prepublishOnly": "npm run build",
"pretest": "npm run build"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-typescript": "12.1.1",
"rollup": "^4.21.0",
"@rollup/plugin-terser": "0.4.4",
"typescript": "5.7.2"
},
"dependencies": {
"@tauri-apps/api": "2.1.1",
"tslib": "^2.1.0"
}
}