-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"name": "driftnode-workspace",
"private": true,
"version": "0.0.0",
"description": "Workspace root for driftnode and the nodes it generates.",
"license": "MIT",
"author": "Robert Moore",
"engines": {
"node": ">=20.19"
},
"//workspaces": "Only the generator is a workspace. packages/n8n-nodes-vultr is generated output that is published separately and has zero runtime dependencies. Including it would install its devDependencies into this repo, which means n8n's entire tree (AWS SDK, OpenTelemetry, Sentry, LangChain) for the sake of five type names, and would put the lockfile out of sync on every regeneration.",
"workspaces": [
"packages/driftnode"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"conformance": "npm run conformance --prefix packages/n8n-nodes-vultr"
},
"devDependencies": {
"@types/node": "^22.9.0",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
}
}