disco/package.json

12 lines
242 B
JSON
Raw Normal View History

2022-02-22 03:39:07 -05:00
{
"name": "disco",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "nasm -f elf64 disco.asm -o disco.o && ld disco.o -o disco",
"start": "./disco",
"dev": "yarn build && yarn start"
}
}