2021-11-09 19:46:08 +00:00
|
|
|
{
|
|
|
|
|
"name": "@hoppscotch/codemirror-lang-graphql",
|
2022-06-09 19:54:41 +00:00
|
|
|
"version": "0.2.0",
|
2021-11-09 19:46:08 +00:00
|
|
|
"description": "GraphQL language support for CodeMirror",
|
2021-11-21 14:17:06 +00:00
|
|
|
"author": "Hoppscotch (support@hoppscotch.io)",
|
2022-01-24 00:14:10 +00:00
|
|
|
"license": "MIT",
|
2021-11-09 19:46:08 +00:00
|
|
|
"scripts": {
|
|
|
|
|
"prepare": "rollup -c"
|
|
|
|
|
},
|
|
|
|
|
"type": "module",
|
|
|
|
|
"main": "dist/index.cjs",
|
|
|
|
|
"module": "dist/index.js",
|
|
|
|
|
"exports": {
|
|
|
|
|
"import": "./dist/index.js",
|
|
|
|
|
"require": "./dist/index.cjs"
|
|
|
|
|
},
|
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
|
"sideEffects": false,
|
|
|
|
|
"dependencies": {
|
2024-03-11 08:51:39 +00:00
|
|
|
"@codemirror/language": "6.10.1",
|
2023-12-15 09:07:01 +00:00
|
|
|
"@lezer/highlight": "1.2.0",
|
2024-03-07 18:07:48 +00:00
|
|
|
"@lezer/lr": "1.3.14"
|
2021-11-09 19:46:08 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-03-07 18:07:48 +00:00
|
|
|
"@lezer/generator": "1.5.1",
|
|
|
|
|
"mocha": "9.2.2",
|
|
|
|
|
"rollup": "3.29.4",
|
|
|
|
|
"rollup-plugin-dts": "6.0.2",
|
|
|
|
|
"rollup-plugin-ts": "3.4.5",
|
|
|
|
|
"typescript": "5.2.2"
|
2022-01-24 00:14:10 +00:00
|
|
|
}
|
2024-03-07 18:07:48 +00:00
|
|
|
}
|