UNPKG

imba-shell

Version:

Interactive debugger and REPL for Imba.

54 lines (53 loc) 1.94 kB
{ "name": "imba-shell", "version": "0.5.3", "description": "Interactive debugger and REPL for Imba.", "keywords": [ "imba", "imba-shell", "shell", "repl", "debugger" ], "author": "Donald Pakkies", "license": "MIT", "main": "dist/index.js", "types": "types/index.d.ts", "bugs": "https://github.com/donaldp/imba-shell/issues", "homepage": "https://github.com/donaldp/imba-shell", "repository": "https://github.com/donaldp/imba-shell", "scripts": { "build": "npm run build:entry && npm run build:compilers && npm run build:errors && npm run build:runners && npm run build:update", "build:entry": "imba build src/index.imba --platform node -o dist -s -M", "build:compilers": "imba build src/Compilers/index.imba --bundle --platform node -o dist/Compilers -s -M", "build:errors": "imba build src/Errors/index.imba --bundle --platform node -o dist/Errors -s -M", "build:runners": "imba build src/Runners/index.imba --bundle --platform node -o dist/Runners -s -M", "build:update": "node ./scripts/update.js", "test": "jest --roots test", "test:watch": "jest --watchAll --roots test", "prepare": "npm run build && npm run test" }, "bin": { "imba-r": "./bin/runtime", "imba-runtime": "./bin/runtime", "imba-shell": "./bin/repl", "imbar": "./bin/runtime", "imbas": "./bin/repl", "ir": "./bin/runtime" }, "exports": { ".": "./dist/index.js", "./Compilers": "./dist/Compilers/index.js", "./Errors": "./dist/Errors/index.js", "./Runners": "./dist/Runners/index.js" }, "dependencies": { "imba": "^2.0.0-alpha.245", "typescript": "^5.8.3" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^22.14.1", "jest": "^29.7.0" } }