A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

package.json 695B

5 lat temu
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. }