compiler/package.json

44 lines
933 B
JSON
Raw Permalink Normal View History

2024-06-02 21:57:15 +03:00
{
"name": "gren-lang",
2024-08-25 21:31:37 +03:00
"version": "0.4.5",
2024-06-02 21:57:15 +03:00
"description": "Compiler for the Gren programming language",
"scripts": {
2024-09-23 23:37:09 +03:00
"test": "echo \"Error: no test specified\" && exit 1",
2024-09-26 11:24:33 +03:00
"prepublishOnly": "gren make src/Main.gren --optimize --output compiler.js",
"prettier": "prettier -w \"!**/gren.json\" ."
2024-06-02 21:57:15 +03:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/gren-lang/compiler.git"
},
"files": [
2024-09-23 23:37:09 +03:00
"index.js",
"compiler.js",
2024-09-25 21:19:32 +03:00
"cli.js"
2024-06-02 21:57:15 +03:00
],
"bin": {
2024-09-25 21:19:32 +03:00
"gren": "cli.js"
2024-06-02 21:57:15 +03:00
},
"keywords": [
"gren",
"lang",
"language",
"bin",
"binary",
"install",
"installer"
],
"author": "Robin Heggelund Hansen",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/gren-lang/compiler/issues"
},
"homepage": "https://gren-lang.org",
"dependencies": {
2024-09-24 00:06:46 +03:00
"postject": "^1.0.0-alpha.6"
2024-09-26 11:24:33 +03:00
},
"devDependencies": {
"prettier": "3.3.3"
2024-06-02 21:57:15 +03:00
}
}