node-mgba 0.1.1 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/native/libmgba_shim.so +0 -0
- package/package.json +27 -16
package/native/libmgba_shim.so
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-mgba",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"packageManager": "pnpm@10.19.0",
|
|
4
5
|
"description": "Extensible, plugin-first headless Game Boy / GBA emulator SDK for Node.js powered by libmgba",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"main": "dist/src/index.js",
|
|
@@ -36,7 +37,9 @@
|
|
|
36
37
|
"dist/src",
|
|
37
38
|
"dist/plugins",
|
|
38
39
|
"native/libmgba_shim.so",
|
|
39
|
-
"vendor/mgba-dist/lib/libmgba.so*"
|
|
40
|
+
"vendor/mgba-dist/lib/libmgba.so*",
|
|
41
|
+
"README.md",
|
|
42
|
+
"LICENSE"
|
|
40
43
|
],
|
|
41
44
|
"exports": {
|
|
42
45
|
".": {
|
|
@@ -61,11 +64,31 @@
|
|
|
61
64
|
"import": "./dist/src/testing/index.js"
|
|
62
65
|
}
|
|
63
66
|
},
|
|
67
|
+
"scripts": {
|
|
68
|
+
"build:native": "make -C native",
|
|
69
|
+
"build:ts": "rm -rf dist && tsc -p tsconfig.json",
|
|
70
|
+
"build:gui": "vite build --config gui/vite.config.ts",
|
|
71
|
+
"build": "npm-run-all build:native build:ts build:gui",
|
|
72
|
+
"pretest": "pnpm build",
|
|
73
|
+
"prepublishOnly": "pnpm build",
|
|
74
|
+
"type-check": "tsc --noEmit && vue-tsc --noEmit -p gui/tsconfig.json",
|
|
75
|
+
"lint": "eslint . && tsc --noEmit && vue-tsc --noEmit -p gui/tsconfig.json",
|
|
76
|
+
"test": "node --import tsx/esm --test tests/*.test.ts",
|
|
77
|
+
"bench": "tsx benchmarks/benchmark.ts",
|
|
78
|
+
"gui": "tsx gui/server.ts",
|
|
79
|
+
"gui:dev": "vite --config gui/vite.config.ts"
|
|
80
|
+
},
|
|
64
81
|
"dependencies": {
|
|
65
82
|
"koffi": "^3.1.6",
|
|
66
83
|
"sharp": "^0.33.5",
|
|
67
84
|
"xxhash-wasm": "^1.1.0"
|
|
68
85
|
},
|
|
86
|
+
"pnpm": {
|
|
87
|
+
"onlyBuiltDependencies": [
|
|
88
|
+
"koffi",
|
|
89
|
+
"sharp"
|
|
90
|
+
]
|
|
91
|
+
},
|
|
69
92
|
"devDependencies": {
|
|
70
93
|
"@eslint/js": "^10.0.1",
|
|
71
94
|
"@tailwindcss/vite": "^4.3.3",
|
|
@@ -90,18 +113,6 @@
|
|
|
90
113
|
},
|
|
91
114
|
"engines": {
|
|
92
115
|
"node": ">=20.0.0"
|
|
93
|
-
},
|
|
94
|
-
"scripts": {
|
|
95
|
-
"build:native": "make -C native",
|
|
96
|
-
"build:ts": "rm -rf dist && tsc -p tsconfig.json",
|
|
97
|
-
"build:gui": "vite build --config gui/vite.config.ts",
|
|
98
|
-
"build": "npm-run-all build:native build:ts build:gui",
|
|
99
|
-
"pretest": "pnpm build",
|
|
100
|
-
"type-check": "tsc --noEmit && vue-tsc --noEmit -p gui/tsconfig.json",
|
|
101
|
-
"lint": "eslint . && tsc --noEmit && vue-tsc --noEmit -p gui/tsconfig.json",
|
|
102
|
-
"test": "node --import tsx/esm --test tests/*.test.ts",
|
|
103
|
-
"bench": "tsx benchmarks/benchmark.ts",
|
|
104
|
-
"gui": "tsx gui/server.ts",
|
|
105
|
-
"gui:dev": "vite --config gui/vite.config.ts"
|
|
106
116
|
}
|
|
107
|
-
}
|
|
117
|
+
}
|
|
118
|
+
|