@syndash/research-vault-mcp 1.1.5 → 1.1.6
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/CHANGELOG.md +8 -0
- package/LICENSE +30 -0
- package/README.md +3 -2
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 1.1.6 — 2026-06-16
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Aligned npm package license metadata with the monorepo root `LICENSE`.
|
|
10
|
+
- Added `LICENSE` to the published package artifact so npm installs include the governing license text.
|
|
11
|
+
- Updated README package mechanics and license language to match the packaged artifact.
|
|
12
|
+
|
|
5
13
|
## 1.1.5 — 2026-06-08
|
|
6
14
|
|
|
7
15
|
### Changed
|
package/LICENSE
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# CC BY-NC-ND 4.0 — Attribution-NonCommercial-NoDerivatives
|
|
2
|
+
|
|
3
|
+
**Creative Commons License — Non-Commercial Use Only**
|
|
4
|
+
|
|
5
|
+
## TL;DR
|
|
6
|
+
|
|
7
|
+
You MAY:
|
|
8
|
+
- Study this research privately
|
|
9
|
+
- Share it with attribution (keep this license intact)
|
|
10
|
+
- Build on it for personal/research purposes
|
|
11
|
+
|
|
12
|
+
You MAY NOT:
|
|
13
|
+
- **Commercialize** the content or any derivative works
|
|
14
|
+
- Create derivative works (remixes, modifications, extensions)
|
|
15
|
+
- Remove this license from any distribution
|
|
16
|
+
- Claim authorship of original work
|
|
17
|
+
|
|
18
|
+
## Full Legal Notice
|
|
19
|
+
|
|
20
|
+
This work may not be used for commercial purposes. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
21
|
+
|
|
22
|
+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
23
|
+
|
|
24
|
+
2. The name "ProjectAlpha" and the author's name may not be used to endorse or promote products derived from this software without specific prior written permission.
|
|
25
|
+
|
|
26
|
+
3. This software is provided by the copyright holders "as is" and any express or implied warranties are disclaimed, including but not limited to implied warranties of merchantability and fitness for a particular purpose.
|
|
27
|
+
|
|
28
|
+
## Jurisdiction
|
|
29
|
+
|
|
30
|
+
This license is governed by the laws of the jurisdiction in which the original author resides.
|
package/README.md
CHANGED
|
@@ -144,6 +144,7 @@ Published packages include:
|
|
|
144
144
|
- `dist/server.js`
|
|
145
145
|
- `src/**/*.ts` for source inspection
|
|
146
146
|
- `README.md`
|
|
147
|
+
- `LICENSE`
|
|
147
148
|
- `CHANGELOG.md`
|
|
148
149
|
- `package.json`
|
|
149
150
|
|
|
@@ -169,8 +170,8 @@ The package is intentionally Bun-native today because the server uses Bun APIs.
|
|
|
169
170
|
|
|
170
171
|
## License
|
|
171
172
|
|
|
172
|
-
|
|
173
|
+
Released under the same license as the monorepo root: [CC BY-NC-ND 4.0](./LICENSE). You may share unmodified copies with attribution for non-commercial use. For commercial licensing or research collaboration, open an issue in the source repository.
|
|
173
174
|
|
|
174
175
|
## Releases
|
|
175
176
|
|
|
176
|
-
See [CHANGELOG.md](./CHANGELOG.md). Current npm release: `1.1.
|
|
177
|
+
See [CHANGELOG.md](./CHANGELOG.md). Current npm release: `1.1.6`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syndash/research-vault-mcp",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
4
4
|
"description": "DASH Research Vault MCP server — local-first semantic search, note persistence, and public-safe knowledge-base tools for MCP-compatible agents.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"bugs": {
|
|
22
22
|
"url": "https://github.com/Fearvox/dash-research-vault/issues"
|
|
23
23
|
},
|
|
24
|
-
"license": "
|
|
24
|
+
"license": "CC-BY-NC-ND-4.0",
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|
|
27
27
|
},
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
"dist/**/*.js",
|
|
31
31
|
"bin/**/*.mjs",
|
|
32
32
|
"README.md",
|
|
33
|
+
"LICENSE",
|
|
33
34
|
"CHANGELOG.md",
|
|
34
35
|
"package.json"
|
|
35
36
|
],
|