UNPKG

@neo4j-cypher/editor-support

Version:

Core functionality to support Cypher integration into editors

66 lines (65 loc) 1.86 kB
{ "name": "@neo4j-cypher/editor-support", "description": "Core functionality to support Cypher integration into editors", "keywords": [ "cypher" ], "version": "1.0.2", "author": "Neo4j Inc.", "license": "Apache-2.0", "main": "lib/editor-support.js", "module": "es/editor-support.js", "exports": { ".": { "import": "./es/editor-support.js", "require": "./lib/editor-support.js", "types": "./src/editor-support.d.ts" }, "./src/editor-support.d.ts": { "import": "./src/editor-support.d.ts" }, "./src/editor-support.js": { "import": "./src/editor-support.js" } }, "types": "src/editor-support.d.ts", "repository": { "type": "git", "url": "git://github.com/neo4j/cypher-editor.git" }, "bugs": { "url": "https://github.com/neo4j/cypher-editor/issues" }, "scripts": { "build-lib": "babel --config-file ../../babel.config.js --extensions \".js\" --out-dir lib ./src", "build-es": "cross-env ES=true babel --config-file ../../babel.config.js --extensions \".js\" --out-dir es ./src", "build": "npm run build-lib && npm run build-es", "clean:build": "rimraf lib && rimraf es" }, "files": [ "src/*.d.ts", "es/", "lib/", "README.md" ], "engineStrict": true, "engines": { "node": ">=14.0.0" }, "dependencies": { "@babel/runtime": "^7.20.13", "@neo4j-cypher/antlr4": "1.0.0", "fuse.js": "^6.6.2", "lodash.find": "^4.6.0", "lodash.includes": "^4.3.0" }, "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-object-rest-spread": "^7.20.7", "@babel/plugin-transform-regenerator": "^7.20.5", "@babel/plugin-transform-runtime": "^7.19.6", "@babel/preset-env": "^7.20.2" } }