@egose/n8n-client 0.4.3 → 0.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -0
- package/package.json +5 -81
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.4.
|
|
2
|
+
"version": "0.4.4",
|
|
3
3
|
"description": "TypeScript client for the n8n Public API with cursor-based pagination and typed resource handles.",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"n8n",
|
|
@@ -21,86 +21,10 @@
|
|
|
21
21
|
"module": "./index.js",
|
|
22
22
|
"types": "./index.d.ts",
|
|
23
23
|
"exports": {
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
"n8n",
|
|
29
|
-
"n8n-api",
|
|
30
|
-
"workflow-automation",
|
|
31
|
-
"automation",
|
|
32
|
-
"typescript",
|
|
33
|
-
"client",
|
|
34
|
-
"api-client"
|
|
35
|
-
],
|
|
36
|
-
"scripts": {
|
|
37
|
-
"dev": "tsc -w",
|
|
38
|
-
"build": "rimraf ./build && tsc",
|
|
39
|
-
"bundle": "tsup",
|
|
40
|
-
"lint-fix": "eslint --fix .",
|
|
41
|
-
"typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.tests.json",
|
|
42
|
-
"test:unit": "vitest run --no-cache --config vitest.unit.config.ts",
|
|
43
|
-
"test:integration": "vitest run --no-cache --config vitest.integration.config.ts",
|
|
44
|
-
"test": "vitest run --no-cache",
|
|
45
|
-
"release": "release-it",
|
|
46
|
-
"changelog": "node changelog.mjs"
|
|
47
|
-
},
|
|
48
|
-
"type": "module",
|
|
49
|
-
"author": "J.Dev",
|
|
50
|
-
"license": "Apache-2.0",
|
|
51
|
-
"sideEffects": false,
|
|
52
|
-
"files": [
|
|
53
|
-
"./",
|
|
54
|
-
"!dist/**/*.map",
|
|
55
|
-
"README.md",
|
|
56
|
-
"LICENSE",
|
|
57
|
-
"CHANGELOG.md"
|
|
58
|
-
],
|
|
59
|
-
"main": "./index.cjs",
|
|
60
|
-
"module": "./index.js",
|
|
61
|
-
"types": "./index.d.ts",
|
|
62
|
-
"exports": {
|
|
63
|
-
".": {
|
|
64
|
-
"types": "./index.d.ts",
|
|
65
|
-
"require": "./index.cjs",
|
|
66
|
-
"import": "./index.js"
|
|
67
|
-
}
|
|
68
|
-
},
|
|
69
|
-
"repository": {
|
|
70
|
-
"type": "git",
|
|
71
|
-
"url": "https://github.com/egose/n8n-client"
|
|
72
|
-
},
|
|
73
|
-
"bugs": {
|
|
74
|
-
"url": "https://github.com/egose/n8n-client/issues"
|
|
75
|
-
},
|
|
76
|
-
"homepage": "https://n8n-client.pages.dev/",
|
|
77
|
-
"engines": {
|
|
78
|
-
"node": ">=20"
|
|
79
|
-
},
|
|
80
|
-
"devDependencies": {
|
|
81
|
-
"@commitlint/cli": "^20.5.0",
|
|
82
|
-
"@commitlint/config-conventional": "^20.5.0",
|
|
83
|
-
"@commitlint/format": "^20.5.0",
|
|
84
|
-
"@eslint/js": "^10.0.1",
|
|
85
|
-
"@release-it/bumper": "^7.0.5",
|
|
86
|
-
"@types/eslint-config-prettier": "^6.11.3",
|
|
87
|
-
"@types/node": "^25.5.0",
|
|
88
|
-
"conventional-changelog": "^7.2.0",
|
|
89
|
-
"conventional-changelog-conventionalcommits": "^9.3.1",
|
|
90
|
-
"dotenv": "^17.4.0",
|
|
91
|
-
"eslint": "10.2.1",
|
|
92
|
-
"eslint-config-prettier": "^10.1.8",
|
|
93
|
-
"prettier": "4.0.0-alpha.13",
|
|
94
|
-
"release-it": "^20.0.1",
|
|
95
|
-
"rimraf": "^6.1.3",
|
|
96
|
-
"semver": "^7.7.4",
|
|
97
|
-
"tsup": "^8.5.1",
|
|
98
|
-
"tsx": "^4.21.0",
|
|
99
|
-
"typescript": "^6.0.2",
|
|
100
|
-
"typescript-eslint": "^8.58.0",
|
|
101
|
-
"vitest": "^4.1.2",
|
|
102
|
-
"wait-on": "^9.0.4",
|
|
103
|
-
"yargs": "^18.0.0"
|
|
24
|
+
".": {
|
|
25
|
+
"types": "./index.d.ts",
|
|
26
|
+
"require": "./index.cjs",
|
|
27
|
+
"import": "./index.js"
|
|
104
28
|
}
|
|
105
29
|
},
|
|
106
30
|
"repository": {
|