package.json 496 B

1234567891011121314151617181920212223
  1. {
  2. "name": "ts-starfish",
  3. "version": "0.1.0",
  4. "description": "A *><> interpreter written in TypeScript",
  5. "main": "dist/main.ts",
  6. "type": "module",
  7. "scripts": {
  8. "build": "tsc",
  9. "test": "echo \"Error: no test specified\" && exit 1"
  10. },
  11. "keywords": [
  12. "esolang",
  13. "starfish",
  14. "fish",
  15. "esoteric-language"
  16. ],
  17. "author": "Bee Hudson <apisnecros@proton.me>",
  18. "license": "MIT",
  19. "dependencies": {
  20. "@types/node": "^20.11.14",
  21. "typescript": "^5.3.3"
  22. }
  23. }