mirror of
https://github.com/danbulant/lang-surrealql
synced 2026-05-20 12:58:49 +00:00
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"name": "lezer-lang-surrealql",
|
|
"version": "0.1.0",
|
|
"description": "SurrealQL language support for CodeMirror 6",
|
|
"main": "dist/index.cjs",
|
|
"type": "module",
|
|
"author": {
|
|
"name": "Daniel Bulant",
|
|
"email": "/@danbulant.eu",
|
|
"url": "https://danbulant.eu"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/danbulant/lang-surrealql.git"
|
|
},
|
|
"homepage": "https://github.com/danbulant/lang-surrealql",
|
|
"exports": {
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"scripts": {
|
|
"test": "cm-runtests",
|
|
"prepare": "lezer-generator src/surrealql.grammar -o src/surrealql.grammar && cm-buildhelper src/surrealql.ts"
|
|
},
|
|
"types": "dist/index.d.ts",
|
|
"module": "dist/index.js",
|
|
"sideEffects": false,
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@lezer/generator": "^1.0.0",
|
|
"@codemirror/buildhelper": "^1.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@codemirror/autocomplete": "^6.0.0",
|
|
"@lezer/common": "^1.2.0",
|
|
"@lezer/highlight": "^1.0.0",
|
|
"@codemirror/language": "^6.0.0",
|
|
"@codemirror/state": "^6.0.0",
|
|
"@lezer/lr": "^1.4.0"
|
|
}
|
|
}
|