-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.24 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.24 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@documenso/n8n-nodes-documenso",
"version": "0.1.0",
"description": "n8n community node for Documenso - the open source document signing platform",
"keywords": [
"n8n-community-node-package"
],
"author": {
"name": "Documenso",
"email": "support@documenso.com",
"url": "https://documenso.com"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsdown",
"dev": "docker compose up",
"check": "biome check --write",
"lint": "biome lint",
"format": "biome format --write",
"typecheck": "tsc --noEmit",
"release": "./scripts/release.sh"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/DocumensoApi.credentials.js"
],
"nodes": [
"dist/nodes/Documenso/Documenso.node.js",
"dist/nodes/DocumensoTrigger/DocumensoTrigger.node.js"
]
},
"dependencies": {
"@documenso/sdk-typescript": "^0.7.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@n8n/node-cli": "^0.19.0",
"@types/bun": "latest",
"n8n-workflow": "^2.7.0",
"tsdown": "^0.20.3",
"typescript": "^5.7.0"
},
"peerDependencies": {
"n8n-workflow": "*"
}
}