12345678910111213141516171819202122232425262728293031323334353637 |
- {
- "name": "ts-sunfish",
- "version": "0.7.0",
- "description": "an interpreter for the ¤><> esolang written in TypeScript",
- "main": "dist/main.js",
- "type": "module",
- "scripts": {
- "build": "tsc",
- "test": "npm run build && node --experimental-vm-modules node_modules/jest/bin/jest.js tests/"
- },
- "keywords": [
- "esolang",
- "starfish",
- "sunfish",
- "fish",
- "esoteric",
- "language"
- ],
- "author": "Apis Necros <apisnecros@proton.me>",
- "license": "MIT",
- "repository": {
- "type": "git",
- "url": "https://git.vzqk50.com/ApisNecros/ts-sun"
- },
- "dependencies": {
- "@types/node": "^20.11.14",
- "typescript": "^5.3.3"
- },
- "devDependencies": {
- "@types/jest": "^29.5.12",
- "jest": "^29.7.0"
- },
- "jest": {
- "transform": {}
- },
- "files": ["dist"]
- }
|