2024-07-05 09:43:27 +00:00
|
|
|
{
|
|
|
|
|
"name": "@n8n/config",
|
2026-01-26 15:36:54 +00:00
|
|
|
"version": "2.5.0",
|
2024-07-05 09:43:27 +00:00
|
|
|
"scripts": {
|
|
|
|
|
"clean": "rimraf dist .turbo",
|
|
|
|
|
"dev": "pnpm watch",
|
|
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
|
"build": "tsc -p tsconfig.build.json",
|
2024-09-17 12:10:22 +00:00
|
|
|
"format": "biome format --write src test",
|
|
|
|
|
"format:check": "biome ci src test",
|
2025-06-27 08:42:47 +00:00
|
|
|
"lint": "eslint . --quiet",
|
2025-07-28 09:07:28 +00:00
|
|
|
"lint:fix": "eslint . --fix",
|
2024-07-05 09:43:27 +00:00
|
|
|
"watch": "tsc -p tsconfig.build.json --watch",
|
|
|
|
|
"test": "jest",
|
2025-11-20 14:28:28 +00:00
|
|
|
"test:unit": "jest",
|
2024-07-05 09:43:27 +00:00
|
|
|
"test:dev": "jest --watch"
|
|
|
|
|
},
|
|
|
|
|
"main": "dist/index.js",
|
|
|
|
|
"module": "src/index.ts",
|
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
|
"files": [
|
|
|
|
|
"dist/**/*"
|
|
|
|
|
],
|
|
|
|
|
"dependencies": {
|
2025-01-06 09:21:24 +00:00
|
|
|
"@n8n/di": "workspace:*",
|
2025-04-10 11:35:13 +00:00
|
|
|
"reflect-metadata": "catalog:",
|
|
|
|
|
"zod": "catalog:"
|
2025-02-25 18:45:50 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@n8n/typescript-config": "workspace:*"
|
2024-07-05 09:43:27 +00:00
|
|
|
}
|
|
|
|
|
}
|