langium-cli
Version:
CLI for Langium - the language engineering tool
72 lines (71 loc) • 1.78 kB
JSON
{
"name": "langium-cli",
"version": "4.0.0",
"description": "CLI for Langium - the language engineering tool",
"homepage": "https://langium.org",
"engines": {
"node": ">=20.10.0",
"npm": ">=10.2.3"
},
"keywords": [
"cli",
"dsl",
"lsp",
"vscode",
"typescript"
],
"license": "MIT",
"files": [
"bin",
"lib",
"src",
"langium-config-schema.json"
],
"bin": {
"langium": "./bin/langium.js"
},
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"./textmate": {
"import": "./lib/generator/highlighting/textmate-generator.js",
"types": "./lib/generator/highlighting/textmate-generator.d.ts"
}
},
"type": "module",
"scripts": {
"clean": "shx rm -rf lib coverage",
"build": "tsc",
"watch": "tsc --watch",
"publish:next": "npm --no-git-tag-version version \"$(semver $npm_package_version -i minor)-next.$(git rev-parse --short HEAD)\" && npm publish --tag next",
"publish:latest": "npm publish --tag latest --access public"
},
"dependencies": {
"chalk": "~5.4.1",
"commander": "~14.0.0",
"fs-extra": "~11.3.0",
"jsonschema": "~1.5.0",
"langium": "~4.0.0",
"langium-railroad": "~4.0.0",
"lodash": "~4.17.21"
},
"devDependencies": {
"@types/fs-extra": "~11.0.1"
},
"volta": {
"node": "20.19.2",
"npm": "10.8.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eclipse-langium/langium.git",
"directory": "packages/langium-cli"
},
"bugs": "https://github.com/eclipse-langium/langium/issues",
"author": {
"name": "TypeFox",
"url": "https://www.typefox.io"
}
}