@gamely/lua2tic
Version:
Create your own engine for your games in lua and export it as a tic80 cartridge!
34 lines (33 loc) • 1.16 kB
JSON
{
"name": "@gamely/lua2tic",
"version": "0.0.19",
"author": "RodrigoDornelles",
"license": "Apache-2.0",
"homepage": "https://docs.gamely.com.br",
"repository": "https://github.com/gamelly/core-native-tic",
"funding": "https://github.com/sponsors/RodrigoDornelles",
"bugs": "https://github.com/gamelly/core-native-tic/issues",
"description": "Create your own engine for your games in lua and export it as a tic80 cartridge!",
"keywords": [
"game engine",
"game",
"engine",
"tic-80",
"tic80",
"tic",
"lua"
],
"main": "dist/lua2tic.js",
"bin": {
"lua2tic": "bin/lua2tic"
},
"scripts": {
"copydist": "cp README.md ../../dist && cp package.json ../../dist",
"build:lib": "bun build ../../tools/build.ts --target browser --entry-naming 'lua2tic.js' --outdir ../../dist/dist",
"build:bin": "bun build bin.ts --target node --entry-naming 'lua2tic' --outdir ../../dist/bin",
"build": "bun run build:lib --minify && bun run build:bin --minify && bun run copydist"
},
"devDependencies": {
"bun": "^1.2.4"
}
}