package.json 810 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "@hoppscotch/codemirror-lang-graphql",
  3. "version": "0.2.0",
  4. "description": "GraphQL language support for CodeMirror",
  5. "author": "Hoppscotch (support@hoppscotch.io)",
  6. "license": "MIT",
  7. "scripts": {
  8. "prepare": "rollup -c && tsc --emitDeclarationOnly --declaration"
  9. },
  10. "type": "module",
  11. "main": "dist/index.cjs",
  12. "module": "dist/index.js",
  13. "exports": {
  14. "import": "./dist/index.js",
  15. "require": "./dist/index.cjs"
  16. },
  17. "types": "dist/index.d.ts",
  18. "sideEffects": false,
  19. "dependencies": {
  20. "@codemirror/language": "6.10.1",
  21. "@lezer/highlight": "1.2.0",
  22. "@lezer/lr": "1.3.14"
  23. },
  24. "devDependencies": {
  25. "@lezer/generator": "1.5.1",
  26. "mocha": "9.2.2",
  27. "rollup": "3.29.4",
  28. "@rollup/plugin-typescript": "12.1.1",
  29. "typescript": "5.2.2"
  30. }
  31. }