Files
alighasami 3d5eaf9445
Some checks failed
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
first commit
2026-03-17 16:22:57 +03:30

47 lines
1.1 KiB
JSON

{
"name": "@n8n/expression-runtime",
"version": "0.3.0",
"description": "Secure, isolated expression evaluation runtime for n8n",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json && pnpm build:runtime",
"build:runtime": "node esbuild.config.js",
"test": "vitest run",
"test:dev": "vitest --watch --silent false",
"typecheck": "tsc --noEmit"
},
"keywords": [
"n8n",
"expression",
"evaluation",
"isolated-vm",
"web-worker",
"security"
],
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"@n8n/tournament": "1.0.6",
"isolated-vm": "^6.0.2",
"js-base64": "catalog:",
"jssha": "3.3.1",
"lodash": "catalog:",
"luxon": "catalog:",
"md5": "2.3.0",
"title-case": "3.0.3",
"transliteration": "2.3.5"
},
"devDependencies": {
"@types/lodash": "catalog:",
"@types/luxon": "3.2.0",
"@types/md5": "^2.3.5",
"typescript": "catalog:",
"vitest": "catalog:"
},
"files": [
"dist",
"ARCHITECTURE.md",
"LICENSE.md"
]
}