-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.83 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "10x-n8n-skill",
"version": "2.3.0",
"description": "10x.in n8n Skill — AI skill plugin for creating, managing, and deploying n8n workflows. Developed by 10x Team. Works with Claude Code, OpenCode, and other AI coding assistants. 546-node source index, 41 atomic commands, 5 composed skills, Python sandbox. Cross-model compatible.",
"type": "module",
"main": "lib/api.js",
"exports": {
".": "./lib/api.js",
"./config": "./lib/config.js",
"./tracker": "./lib/tracker.js",
"./indexer": "./lib/indexer.js",
"./agents": "./lib/agents.js",
"./discovery": "./lib/discovery.js",
"./project": "./lib/project.js",
"./credentials": "./lib/credentials.js",
"./syncer": "./lib/syncer.js"
},
"bin": {
"10x-n8n": "lib/cli.js"
},
"scripts": {
"postinstall": "node scripts/install-commands.js",
"preuninstall": "node scripts/uninstall-commands.js",
"init-track": "node -e \"import('./lib/tracker.js').then(m => console.log(JSON.stringify(m.initTracker('localhost', 'self-hosted'), null, 2)))\"",
"reindex": "node -e \"import('./lib/indexer.js').then(m => console.log(JSON.stringify(m.rebuildIndex(process.cwd()), null, 2)))\"",
"test": "node --test test/*.test.js",
"lint": "echo 'No linter configured'",
"prepublishOnly": "node -e \"console.log('Ready to publish v' + require('./package.json').version)\""
},
"files": [
".claude-plugin/",
".claude/commands/",
".claude/skills/",
".claude/agents/",
".claude/statusline.cjs",
".claude/settings.json",
".mcp.json",
"lib/",
"scripts/",
"config/",
"sandbox/*.py",
"sandbox/__init__.py",
"docs/*.md",
"docs/nodes/doc-links.json",
"docs/nodes/node-catalog.json",
"docs/nodes/node-index.json",
"docs/nodes/node-research.md",
"docs/nodes/workflow-patterns.json",
"docs/nodes/workflow-template.json",
".n8n-track/HEAD.json",
".n8n-track/branches.json",
".n8n-track/handoffs/README.md",
".n8n-track/index/",
"projects/.template/",
"LICENSE",
"README.md"
],
"keywords": [
"claude-code",
"claude-code-skill",
"claude-code-plugin",
"opencode",
"n8n",
"n8n-workflow",
"n8n-automation",
"workflow-automation",
"ai-agents",
"ai-skill",
"ai-plugin",
"10x.in",
"n8n-factory",
"no-code",
"low-code",
"workflow-builder"
],
"author": {
"name": "10x Team",
"url": "https://github.com/10x-Anit/10x-n8n-skill"
},
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/10x-Anit/10x-n8n-skill.git"
},
"bugs": {
"url": "https://github.com/10x-Anit/10x-n8n-skill/issues"
},
"homepage": "https://github.com/10x-Anit/10x-n8n-skill#readme",
"engines": {
"node": ">=18.0.0"
},
"os": [
"darwin",
"linux",
"win32"
]
}