-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.39 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
{
"name": "gamepadzilla",
"version": "1.1.0",
"author": "RodrigoDornelles",
"license": "AGPL-3.0-or-later",
"homepage": "https://rodrigodornelles.github.io/npm-gamepadzilla/",
"repository": "https://github.com/rodrigodornelles/npm-gamepadzilla/",
"funding": "https://github.com/sponsors/RodrigoDornelles",
"bugs": "https://github.com/RodrigoDornelles/npm-gamepadzilla/issues",
"description": "A plug-and-play gamepad frontend framework for HTML5 mobile games, supporting both virtual and physical joysticks. No scripting required.",
"main": "dist/gamepadzilla.js",
"keywords": [
"gamepadzilla",
"joystick",
"dualshock",
"dualsense",
"gamepad",
"xbox360",
"xboxone",
"xbox",
"gpz",
"bun"
],
"scripts": {
"test": "bun test .",
"test:watch": "bun run test --watch",
"test:coverage": "bun run test --coverage",
"start": "bun run build:example && bun run build:watch",
"build": "bun build --minify --outdir dist --target browser --entry-naming 'gamepadzilla.js' src/main.ts",
"build:watch": "bun build --watch --outdir dist --target browser --entry-naming 'gamepadzilla.js' src/main.ts",
"build:example": "bun run build && cp examples/* dist"
},
"dependencies": {
},
"devDependencies": {
"bun": "^1.0.25"
}
}