@jolly-lang/compiler
Version:
A fun compiler for Jolly language that transpiles into JavaScript.
45 lines (44 loc) • 1.4 kB
JSON
{
"type": "module",
"name": "@jolly-lang/compiler",
"version": "1.2.5",
"description": "A fun compiler for Jolly language that transpiles into JavaScript.",
"repository": "https://github.com/kimmyxpow/jolly-lang",
"homepage": "https://jolly.pow.kim",
"bugs": {
"url": "https://github.com/kimmyxpow/jolly-lang/issues"
},
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"bin": {
"jolly": "dist/cli/cli.js"
},
"scripts": {
"build": "bun build ./src/index.ts ./src/**/*.ts --outdir ./dist --target=bun --sourcemap=linked --minify && tsc --emitDeclarationOnly",
"publish:npm": "bun format && bun run build && bun publish --access public",
"format": "prettier --write .",
"compile:example": "bun src/cli/cli.ts compile \"example/**/*.jolly\" --output example-js/ "
},
"keywords": [
"jolly",
"compiler",
"javascript",
"cli"
],
"author": "Abi Noval Fauzi",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^10.0.1",
"fast-glob": "^3.3.2",
"figlet": "^1.8.0",
"ora": "^6.3.1",
"prettier": "^3.3.3",
"terser": "^5.36.0",
"typescript": "^5.7.2"
},
"devDependencies": {
"@types/figlet": "^1.7.0",
"bun-types": "^1.1.36"
}
}