@dragonflymcp/plugin 1.0.0 → 1.0.2
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/LICENSE +25 -1
- package/package.json +4 -4
package/LICENSE
CHANGED
|
@@ -1,6 +1,30 @@
|
|
|
1
|
+
Commons Clause License Condition v1.0
|
|
2
|
+
|
|
3
|
+
The Software is provided to you by the Licensor under the License,
|
|
4
|
+
as defined below, subject to the following condition.
|
|
5
|
+
|
|
6
|
+
Without limiting other conditions in the License, the grant of rights
|
|
7
|
+
under the License will not include, and the License does not grant to
|
|
8
|
+
you, the right to Sell the Software.
|
|
9
|
+
|
|
10
|
+
For purposes of the foregoing, "Sell" means practicing any or all of
|
|
11
|
+
the rights granted to you under the License to provide to third parties,
|
|
12
|
+
for a fee or other consideration (including without limitation fees for
|
|
13
|
+
hosting or consulting/support services related to the Software), a
|
|
14
|
+
product or service whose value derives, entirely or substantially, from
|
|
15
|
+
the functionality of the Software. Any license notice or attribution
|
|
16
|
+
required by the License must also include this Commons Clause License
|
|
17
|
+
Condition notice.
|
|
18
|
+
|
|
19
|
+
Software: Dragonfly
|
|
20
|
+
License: MIT
|
|
21
|
+
Licensor: Michael Kolb
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
MIT License
|
|
2
26
|
|
|
3
|
-
Copyright (c) 2026 Michael Kolb
|
|
27
|
+
Copyright (c) 2026 Michael Kolb. All rights reserved.
|
|
4
28
|
|
|
5
29
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
30
|
of this software and associated documentation files (the "Software"), to deal
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dragonflymcp/plugin",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Dragonfly MCP Plugin — Sonnet-optimized code intelligence, memory, and workflow tools",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
".claude-plugin/"
|
|
12
12
|
],
|
|
13
13
|
"bin": {
|
|
14
|
-
"dragonfly-init": "
|
|
14
|
+
"dragonfly-init": "scripts/init.js"
|
|
15
15
|
},
|
|
16
16
|
"scripts": {
|
|
17
17
|
"build": "tsc",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"engines": {
|
|
44
44
|
"node": ">=18.0.0"
|
|
45
45
|
},
|
|
46
|
-
"license": "MIT",
|
|
46
|
+
"license": "MIT AND Commons-Clause",
|
|
47
47
|
"author": {
|
|
48
48
|
"name": "Michael Kolb",
|
|
49
49
|
"url": "https://github.com/mkolb22"
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"homepage": "https://github.com/mkolb22/dragonfly-plugin",
|
|
52
52
|
"repository": {
|
|
53
53
|
"type": "git",
|
|
54
|
-
"url": "https://github.com/mkolb22/dragonfly-plugin.git"
|
|
54
|
+
"url": "git+https://github.com/mkolb22/dragonfly-plugin.git"
|
|
55
55
|
},
|
|
56
56
|
"publishConfig": {
|
|
57
57
|
"access": "public"
|