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
55 lines
1.3 KiB
JSON
55 lines
1.3 KiB
JSON
{
|
|
"name": "@n8n/vitest-config",
|
|
"version": "1.7.0",
|
|
"type": "module",
|
|
"peerDependencies": {
|
|
"vite": "catalog:",
|
|
"vitest": "catalog:"
|
|
},
|
|
"dependencies": {
|
|
"unplugin-swc": "^1.5.1"
|
|
},
|
|
"devDependencies": {
|
|
"@n8n/typescript-config": "workspace:*",
|
|
"@swc/core": "^1.10.7",
|
|
"vite": "catalog:",
|
|
"vitest": "catalog:"
|
|
},
|
|
"files": [
|
|
"backend.mjs",
|
|
"frontend.mjs"
|
|
],
|
|
"exports": {
|
|
"./backend": {
|
|
"import": "./backend.mjs",
|
|
"require": "./backend.mjs",
|
|
"types": "./backend.d.ts"
|
|
},
|
|
"./frontend": {
|
|
"import": "./dist/frontend.js",
|
|
"require": "./dist/frontend.js",
|
|
"types": "./dist/frontend.d.ts"
|
|
},
|
|
"./node": {
|
|
"import": "./dist/node.js",
|
|
"require": "./dist/node.js",
|
|
"types": "./dist/node.d.ts"
|
|
},
|
|
"./node-decorators": {
|
|
"import": "./dist/node-decorators.js",
|
|
"require": "./dist/node-decorators.js",
|
|
"types": "./dist/node-decorators.d.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf dist .turbo",
|
|
"dev": "pnpm watch",
|
|
"typecheck": "tsc --noEmit",
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"format": "biome format --write .",
|
|
"format:check": "biome ci .",
|
|
"watch": "tsc -p tsconfig.build.json --watch"
|
|
},
|
|
"license": "See LICENSE.md file in the root of the repository"
|
|
}
|