mirror of
https://github.com/hulkholden/n64js.git
synced 2025-04-02 10:51:54 -04:00
25 lines
613 B
JSON
25 lines
613 B
JSON
{
|
|
"name": "n64js",
|
|
"version": "1.0.0",
|
|
"description": "An JavaScript N64 emulator.",
|
|
"main": "n64.min.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "bun build ./src/n64.js --outfile=build/n64.min.js --minify",
|
|
"build-debug": "bun build ./src/n64.js --outfile=build/n64.min.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/hulkholden/n64js"
|
|
},
|
|
"keywords": [
|
|
"n64",
|
|
"emulator"
|
|
],
|
|
"author": "Paul Holden",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/hulkholden/n64js/issues"
|
|
},
|
|
"homepage": "https://github.com/hulkholden/n64js"
|
|
}
|