mirror of
https://github.com/hi-language/transpiler.git
synced 2026-01-14 00:28:05 +00:00
21 lines
413 B
JSON
21 lines
413 B
JSON
{
|
|
"name": "hi-transpiler",
|
|
"version": "0.1.0",
|
|
"description": "The Hi language to JavaScript transpiler.",
|
|
"type": "module",
|
|
"bin": {
|
|
"hi2js": "./cli.js"
|
|
},
|
|
"scripts": {
|
|
"build-parser": "npx nearleyc grammar.ne -o grammar.js",
|
|
"test": "node test_runner.js"
|
|
},
|
|
"dependencies": {
|
|
"moo": "^0.5.2",
|
|
"nearley": "^2.20.1"
|
|
},
|
|
"devDependencies": {
|
|
"nearley": "^2.20.1"
|
|
}
|
|
}
|