A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
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.

package.json 648B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "nespaint",
  3. "version": "0.1.0",
  4. "description": "Painting program focused on sprite, tile, and attribute table creation for NES games.",
  5. "main": "server.js",
  6. "scripts": {
  7. "test": "echo \"Error: no test specified\" && exit 1"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git@git.obsidianblk.me:ObsidianBlk/nespaint.git"
  12. },
  13. "keywords": [
  14. "Nintendo",
  15. "NES",
  16. "Paint",
  17. "Graphics",
  18. "Development",
  19. "Tool"
  20. ],
  21. "author": "Bryan \"ObsidianBlk\" Miller",
  22. "license": "ISC",
  23. "dependencies": {
  24. "chokidar": "^2.1.2",
  25. "ejs": "^2.6.1",
  26. "express": "^4.16.4",
  27. "sass": "^1.17.2"
  28. }
  29. }