package.json 812 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "ts-sunfish",
  3. "version": "0.7.0",
  4. "description": "an interpreter for the ¤><> esolang written in TypeScript",
  5. "main": "dist/main.js",
  6. "type": "module",
  7. "scripts": {
  8. "build": "tsc",
  9. "test": "npm run build && node --experimental-vm-modules node_modules/jest/bin/jest.js tests/"
  10. },
  11. "keywords": [
  12. "esolang",
  13. "starfish",
  14. "sunfish",
  15. "fish",
  16. "esoteric",
  17. "language"
  18. ],
  19. "author": "Apis Necros <apisnecros@proton.me>",
  20. "license": "MIT",
  21. "repository": {
  22. "type": "git",
  23. "url": "https://git.vzqk50.com/ApisNecros/ts-sun"
  24. },
  25. "dependencies": {
  26. "@types/node": "^20.11.14",
  27. "typescript": "^5.3.3"
  28. },
  29. "devDependencies": {
  30. "@types/jest": "^29.5.12",
  31. "jest": "^29.7.0"
  32. },
  33. "jest": {
  34. "transform": {}
  35. },
  36. "files": ["dist"]
  37. }