-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 839 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 839 Bytes
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
{
"name": "phpboy-wasm",
"version": "1.0.0",
"description": "PHPBoy - Game Boy Color Emulator in PHP + WebAssembly",
"type": "module",
"scripts": {
"build": "npm run copy-files",
"copy-files": "mkdir -p dist && cp -r web/* dist/ && cp -r src dist/php/src && cp composer.json dist/php/ && cp vendor dist/php/vendor -r",
"serve": "npx http-server dist -p 8080 -c-1",
"dev": "npm run build && npm run serve"
},
"dependencies": {
"php-wasm": "^0.0.9"
},
"devDependencies": {
"http-server": "^14.1.1"
},
"keywords": [
"game-boy",
"emulator",
"php",
"webassembly",
"wasm",
"gameboy-color"
],
"author": "PHPBoy Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/eddmann/phpboy.git"
}
}