mirror of
https://github.com/n8n-io/n8n
synced 2026-04-21 15:47:20 +00:00
54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"name": "@n8n/vitest-config",
|
|
"version": "1.6.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"
|
|
}
|