This commit is contained in:
bipproduction
2025-12-06 19:39:33 +08:00
commit f07b60b310
24 changed files with 11196 additions and 0 deletions

37
package.json Normal file
View File

@@ -0,0 +1,37 @@
{
"name": "n8n-starter",
"type": "module",
"private": true,
"version": "1.0.9",
"scripts": {
"init": "bun bin/init.ts",
"build": "bun bin/build.ts",
"generate": "bun bin/generate.ts",
"generate:build": "bun bin/generate.ts && bun bin/build.ts",
"version:update": "bun bin/version_update.ts",
"publish": "git add -A && git commit -m 'update version' && bun run version:update && tsc && bun bin/publish.ts",
"build:tsc": "tsc"
},
"dependencies": {
"axios": "^1.13.2",
"request": "^2.88.2"
},
"devDependencies": {
"@types/bun": "latest",
"@types/express": "^5.0.5",
"@types/lodash": "^4.17.20",
"@types/node": "^24.10.0",
"@types/request": "^2.48.13",
"@types/ssh2": "^1.15.5",
"dedent": "^1.7.0",
"express": "^5.1.0",
"lodash": "^4.17.21",
"n8n-core": "^1.117.1",
"n8n-workflow": "^1.116.0",
"nock": "^14.0.10",
"ssh2": "^1.17.0"
},
"peerDependencies": {
"typescript": "^5"
}
}