package.json 485 B

123456789101112131415161718
  1. {
  2. "name": "vl-workflow-engine",
  3. "version": "0.6.1",
  4. "description": "VL Workflow Engine — JS port of the Go workflow executor (spec v3.16)",
  5. "main": "index.js",
  6. "exports": {
  7. ".": "./index.js",
  8. "./engine": "./lib/engine.js",
  9. "./expression": "./lib/expression.js",
  10. "./types": "./lib/types.js",
  11. "./ui/*": "./ui/*"
  12. },
  13. "scripts": {
  14. "test": "node test/run.js"
  15. },
  16. "keywords": ["workflow", "engine", "vl", "visuallogic"],
  17. "license": "UNLICENSED"
  18. }