A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

package.json 695B

il y a 5 ans
12345678910111213141516171819202122232425262728293031
  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. "ajv": "^6.10.0",
  25. "chokidar": "^2.1.2",
  26. "ejs": "^2.6.1",
  27. "express": "^4.16.4",
  28. "sass": "^1.17.2"
  29. },
  30. "devDependencies": {}
  31. }