@nornweave/n8n-nodes-nornweave 0.1.0

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/package.json ADDED
@@ -0,0 +1,60 @@
1
+ {
2
+ "name": "@nornweave/n8n-nodes-nornweave",
3
+ "version": "0.1.0",
4
+ "description": "n8n community node for NornWeave - Inbox-as-a-Service API for AI Agents",
5
+ "license": "MIT",
6
+ "homepage": "https://github.com/nornweave/nornweave",
7
+ "keywords": [
8
+ "n8n-community-node-package",
9
+ "n8n",
10
+ "nornweave",
11
+ "email",
12
+ "inbox",
13
+ "ai-agents"
14
+ ],
15
+ "author": {
16
+ "name": "NornWeave",
17
+ "email": "hello@nornweave.io"
18
+ },
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "https://github.com/nornweave/nornweave.git",
22
+ "directory": "packages/n8n-nodes-nornweave"
23
+ },
24
+ "publishConfig": {
25
+ "access": "public",
26
+ "provenance": true
27
+ },
28
+ "scripts": {
29
+ "build": "n8n-node build",
30
+ "build:watch": "tsc --watch",
31
+ "dev": "n8n-node dev",
32
+ "lint": "n8n-node lint",
33
+ "lint:fix": "n8n-node lint --fix",
34
+ "release": "n8n-node release",
35
+ "prepublishOnly": "npm run lint && npm run build",
36
+ "test": "jest",
37
+ "scan": "npx @n8n/scan-community-package"
38
+ },
39
+ "files": ["dist"],
40
+ "n8n": {
41
+ "n8nNodesApiVersion": 1,
42
+ "strict": true,
43
+ "credentials": ["dist/credentials/NornWeaveApi.credentials.js"],
44
+ "nodes": [
45
+ "dist/nodes/NornWeave/NornWeave.node.js",
46
+ "dist/nodes/NornWeaveTrigger/NornWeaveTrigger.node.js"
47
+ ]
48
+ },
49
+ "devDependencies": {
50
+ "@n8n/node-cli": "*",
51
+ "@types/jest": "^29.5.12",
52
+ "eslint": "9.32.0",
53
+ "jest": "^29.7.0",
54
+ "prettier": "3.6.2",
55
+ "release-it": "^19.0.4",
56
+ "ts-jest": "^29.1.2",
57
+ "typescript": "5.9.2"
58
+ },
59
+ "peerDependencies": { "n8n-workflow": "*" }
60
+ }