n8n-nodes-digit 0.1.2 → 0.1.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.
Files changed (2) hide show
  1. package/dist/package.json +57 -0
  2. package/package.json +1 -1
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "n8n-nodes-digit",
3
+ "version": "0.1.4",
4
+ "description": "DIGIT platform integration for workflow, boundary, filestore, registry, idgen and notification APIs",
5
+ "keywords": [
6
+ "n8n-community-node-package"
7
+ ],
8
+ "license": "MIT",
9
+ "homepage": "https://github.com/srujana-egov/n8n-nodes-digit",
10
+ "author": {
11
+ "name": "Srujana Dadi (eGov)"
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/srujana-egov/n8n-nodes-digit.git"
16
+ },
17
+ "main": "dist/index.js",
18
+ "files": [
19
+ "dist/**/*.js",
20
+ "dist/**/*.json",
21
+ "dist/**/*.png",
22
+ "LICENSE.md",
23
+ "README.md"
24
+ ],
25
+ "scripts": {
26
+ "build": "tsc && gulp build:icons",
27
+ "dev": "tsc --watch",
28
+ "format": "prettier nodes credentials --write",
29
+ "lint": "eslint nodes credentials package.json",
30
+ "lintfix": "eslint nodes credentials package.json --fix",
31
+ "prepublishOnly": "npm run build"
32
+ },
33
+ "n8n": {
34
+ "n8nNodesApiVersion": 1,
35
+ "credentials": [
36
+ "dist/credentials/DigitApi.credentials.js"
37
+ ],
38
+ "nodes": [
39
+ "dist/nodes/DIGIT.node.js"
40
+ ]
41
+ },
42
+ "engines": {
43
+ "node": ">=18"
44
+ },
45
+ "peerDependencies": {
46
+ "n8n-workflow": "*"
47
+ },
48
+ "dependencies": {
49
+ "gulp": "^5.0.1"
50
+ },
51
+ "devDependencies": {
52
+ "@types/node": "^25.0.10",
53
+ "@typescript-eslint/eslint-plugin": "^8.46.1",
54
+ "@typescript-eslint/parser": "^8.46.1",
55
+ "eslint": "^8.57.0"
56
+ }
57
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-digit",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "DIGIT platform integration for workflow, boundary, filestore, registry, idgen and notification APIs",
5
5
  "keywords": [
6
6
  "n8n-community-node-package"