89 lines
2.2 KiB
JSON
89 lines
2.2 KiB
JSON
{
|
|
"name": "langium",
|
|
"version": "4.2.1",
|
|
"description": "A language engineering tool for the Language Server Protocol",
|
|
"homepage": "https://langium.org",
|
|
"engines": {
|
|
"node": ">=20.10.0",
|
|
"npm": ">=10.2.3"
|
|
},
|
|
"keywords": [
|
|
"language",
|
|
"dsl",
|
|
"low-code",
|
|
"lsp",
|
|
"language-server",
|
|
"vscode",
|
|
"typescript"
|
|
],
|
|
"license": "MIT",
|
|
"files": [
|
|
"lib",
|
|
"src",
|
|
"node.js",
|
|
"node.d.ts",
|
|
"test.js",
|
|
"test.d.ts"
|
|
],
|
|
"sideEffects": false,
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./lib/index.d.ts",
|
|
"import": "./lib/index.js"
|
|
},
|
|
"./generate": {
|
|
"types": "./lib/generate/index.d.ts",
|
|
"import": "./lib/generate/index.js"
|
|
},
|
|
"./test": {
|
|
"types": "./lib/test/index.d.ts",
|
|
"import": "./lib/test/index.js"
|
|
},
|
|
"./node": {
|
|
"types": "./lib/node/index.d.ts",
|
|
"import": "./lib/node/index.js"
|
|
},
|
|
"./grammar": {
|
|
"types": "./lib/grammar/index.d.ts",
|
|
"import": "./lib/grammar/index.js"
|
|
},
|
|
"./lsp": {
|
|
"types": "./lib/lsp/index.d.ts",
|
|
"import": "./lib/lsp/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"clean": "shx rm -rf lib coverage",
|
|
"build": "tsc",
|
|
"watch": "tsc --watch",
|
|
"docs": "typedoc",
|
|
"validate-exports": "tsc -p test/tsconfig.export-main.json",
|
|
"langium:generate": "langium generate",
|
|
"langium:generate:production": "langium generate --mode=production",
|
|
"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": {
|
|
"chevrotain": "~11.1.1",
|
|
"chevrotain-allstar": "~0.3.1",
|
|
"vscode-languageserver": "~9.0.1",
|
|
"vscode-languageserver-textdocument": "~1.0.11",
|
|
"vscode-uri": "~3.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"langium-cli": "~4.2.0",
|
|
"typedoc": "~0.28.2"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/eclipse-langium/langium.git",
|
|
"directory": "packages/langium"
|
|
},
|
|
"bugs": "https://github.com/eclipse-langium/langium/issues",
|
|
"author": {
|
|
"name": "TypeFox",
|
|
"url": "https://www.typefox.io"
|
|
}
|
|
}
|