@unwarkz/n8n-nodes-outline-wiki 1.0.1

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.
@@ -0,0 +1,7 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" fill="none">
2
+ <rect width="60" height="60" rx="12" fill="#0366D6"/>
3
+ <path d="M30 12C20.059 12 12 20.059 12 30C12 39.941 20.059 48 30 48C39.941 48 48 39.941 48 30C48 20.059 39.941 12 30 12ZM30 43C22.82 43 17 37.18 17 30C17 22.82 22.82 17 30 17C37.18 17 43 22.82 43 30C43 37.18 37.18 43 30 43Z" fill="white"/>
4
+ <rect x="22" y="24" width="16" height="3" rx="1.5" fill="white"/>
5
+ <rect x="22" y="30" width="12" height="3" rx="1.5" fill="white"/>
6
+ <rect x="22" y="36" width="8" height="3" rx="1.5" fill="white"/>
7
+ </svg>
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ // This file is intentionally minimal — n8n loads nodes via the n8n.nodes array in package.json
3
+ module.exports = {};
package/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "@unwarkz/n8n-nodes-outline-wiki",
3
+ "version": "1.0.1",
4
+ "description": "N8N community node for Outline Wiki - full Outline API coverage with AI Agent tools (documents, collections, comments, attachments, users, shares)",
5
+ "license": "MIT",
6
+ "homepage": "https://github.com/unwarkz/n8n-nodes-mem0-api-server#readme",
7
+ "author": {
8
+ "name": "unwarkz"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/unwarkz/n8n-nodes-mem0-api-server.git"
13
+ },
14
+ "bugs": {
15
+ "url": "https://github.com/unwarkz/n8n-nodes-mem0-api-server/issues"
16
+ },
17
+ "main": "index.js",
18
+ "scripts": {
19
+ "prepublishOnly": "echo 'Skipping build - dist files are pre-built'"
20
+ },
21
+ "files": [
22
+ "dist",
23
+ "index.js"
24
+ ],
25
+ "n8n": {
26
+ "n8nNodesApiVersion": 1,
27
+ "credentials": [
28
+ "dist/credentials/OutlineApi.credentials.js"
29
+ ],
30
+ "nodes": [
31
+ "dist/nodes/outline/Outline.node.js",
32
+ "dist/nodes/outline/OutlineAiTools.node.js"
33
+ ]
34
+ },
35
+ "keywords": [
36
+ "n8n-community-node-package",
37
+ "n8n",
38
+ "outline",
39
+ "outline-wiki",
40
+ "wiki",
41
+ "knowledge-base",
42
+ "knowledge-management",
43
+ "documents",
44
+ "ai",
45
+ "llm",
46
+ "ai-tools"
47
+ ],
48
+ "peerDependencies": {
49
+ "n8n-workflow": ">=1.0.0"
50
+ }
51
+ }