A "high-level" language for the Gameboy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
546 B

2 years ago
2 years ago
  1. {
  2. "devDependencies": {
  3. "@types/node": "^16.9.1",
  4. "peggy": "^1.2.0",
  5. "typescript": "^4.4.3"
  6. },
  7. "name": "gbuoy",
  8. "version": "1.0.0",
  9. "main": "gbuoy.js",
  10. "directories": {
  11. "lib": "lib"
  12. },
  13. "scripts": {
  14. "build": "mkdir -p build && peggy -o build/parser.js lib/parser.pegjs && tsc",
  15. "test": "echo \"Error: no test specified\" && exit 1"
  16. },
  17. "author": "Forest Belton <forest@homolo.gy>",
  18. "license": "MIT",
  19. "description": "A 'high-level' language for the Gameboy",
  20. "bin": {
  21. "gbuoy": "./gbuoy.js"
  22. }
  23. }