n8n-nodes-deepidv
Version:
n8n community node to integrate with the DeepIDV identity verification API
63 lines (62 loc) • 1.72 kB
JSON
{
"name": "n8n-nodes-deepidv",
"version": "0.2.5",
"description": "n8n community node to integrate with the DeepIDV identity verification API",
"keywords": [
"n8n-nodes",
"n8n",
"n8n-community-node-package",
"deepidv",
"identity-verification"
],
"license": "MIT",
"homepage": "https://github.com/Subprime-Platforms/deepidv-n8n-npm#readme",
"author": {
"name": "Nirav Patidar",
"email": "nirav@subprimeplatforms.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Subprime-Platforms/deepidv-n8n-npm.git"
},
"engines": {
"node": ">=20.15"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "npx rimraf dist && tsc && npx gulp build:icons",
"dev": "tsc --watch",
"format": "prettier \"nodes/**/*.ts\" \"credentials/**/*.ts\" --write",
"lint": "eslint \"nodes/**/*.ts\" \"credentials/**/*.ts\"",
"lintfix": "eslint --fix \"nodes/**/*.ts\" \"credentials/**/*.ts\"",
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js \"nodes/**/*.ts\" \"credentials/**/*.ts\""
},
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"peerDependencies": {
"n8n-workflow": "*"
},
"devDependencies": {
"@typescript-eslint/parser": "~8.32.0",
"eslint": "^8.57.0",
"eslint-plugin-n8n-nodes-base": "^1.16.3",
"gulp": "^5.0.0",
"prettier": "^3.5.3",
"rimraf": "^5.0.0",
"typescript": "^5.8.2"
},
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/DeepIDVApi.credentials.js"
],
"nodes": [
"dist/nodes/Deepidv/Deepidv.node.js"
]
}
}