UNPKG

@bpmn-io/feel-editor

Version:
103 lines (102 loc) 2.8 kB
{ "name": "@bpmn-io/feel-editor", "version": "2.0.0", "description": "Editor for FEEL expressions.", "type": "module", "main": "./dist/index.js", "source": "./src/index.js", "exports": { ".": "./dist/index.js", "./package.json": "./package.json" }, "scripts": { "all": "run-s lint check-types test build", "test": "karma start karma.conf.cjs", "build": "rollup -c --bundleConfigAsCjs", "build:watch": "npm run build -- -w", "lint": "eslint .", "check-types": "run-s check-types:*", "check-types:src": "tsc", "check-types:test": "tsc -p test", "start": "cross-env SINGLE_START=true npm run dev", "start:camunda": "cross-env SINGLE_START=camunda npm run dev", "dev": "npm test -- --auto-watch --no-single-run", "prepare": "run-s build" }, "repository": { "type": "git", "url": "git+https://github.com/bpmn-io/feel-editor.git" }, "publishConfig": { "access": "public" }, "engines": { "node": ">= 20" }, "files": [ "dist" ], "keywords": [ "bpmn-io", "feel", "editor" ], "author": { "name": "Martin Stamm", "url": "https://github.com/marstamm" }, "contributors": [ { "name": "bpmn.io contributors", "url": "https://github.com/bpmn-io" } ], "license": "MIT", "dependencies": { "@bpmn-io/feel-lint": "^3.0.0", "@bpmn-io/lang-feel": "^3.0.0", "@camunda/feel-builtins": "^0.2.0", "@codemirror/autocomplete": "^6.20.0", "@codemirror/commands": "^6.10.0", "@codemirror/language": "^6.11.3", "@codemirror/lint": "^6.9.2", "@codemirror/state": "^6.5.2", "@codemirror/view": "^6.38.8", "@lezer/highlight": "^1.2.3", "min-dom": "^4.2.1" }, "devDependencies": { "@babel/core": "^7.26.0", "@rollup/plugin-commonjs": "^28.0.2", "@rollup/plugin-json": "^6.1.0", "@testing-library/dom": "^10.4.0", "@testing-library/user-event": "^14.6.1", "@types/chai": "^5.2.3", "@types/mocha": "^10.0.10", "@types/sinon": "^21.0.0", "@types/sinon-chai": "^4.0.0", "babel-loader": "^9.2.1", "babel-plugin-istanbul": "^7.0.0", "chai": "^6.2.1", "cross-env": "^7.0.3", "eslint": "^9.39.1", "eslint-plugin-bpmn-io": "^2.2.0", "karma": "^6.4.4", "karma-chrome-launcher": "^3.2.0", "karma-coverage": "^2.2.1", "karma-debug-launcher": "^0.0.5", "karma-env-preprocessor": "^0.1.1", "karma-firefox-launcher": "^2.1.3", "karma-mocha": "^2.0.1", "karma-webpack": "^5.0.1", "mocha": "^11.7.5", "mocha-test-container-support": "^0.2.0", "npm-run-all": "^4.1.5", "puppeteer": "^24.32.1", "rollup": "^4.31.0", "sinon": "^21.0.0", "sinon-chai": "^4.0.1", "typescript": "^5.9.3", "webpack": "^5.97.1" } }