@i-scope/debugger 0.2.0 → 0.2.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.
- package/CHANGELOG.md +8 -0
- package/README.md +2 -2
- package/package.json +5 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@ All notable changes to this package will be documented here. The format
|
|
|
4
4
|
is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and
|
|
5
5
|
this project adheres to [Semantic Versioning](https://semver.org/).
|
|
6
6
|
|
|
7
|
+
## [0.2.1] — 2026-09-02
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- README license badge and footer use the unpkg tarball URL instead of
|
|
12
|
+
relative `./LICENSE`. npmjs.com resolved that link to a 404 package
|
|
13
|
+
`@i-scope/LICENSE`.
|
|
14
|
+
|
|
7
15
|
## [0.1.0] — 2026-05-19
|
|
8
16
|
|
|
9
17
|
### Added
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@i-scope/debugger)
|
|
4
4
|
[](https://www.npmjs.com/package/@i-scope/debugger)
|
|
5
|
-
[](
|
|
5
|
+
[](https://unpkg.com/@i-scope/debugger/LICENSE)
|
|
6
6
|
[](#)
|
|
7
7
|
|
|
8
8
|
Official single-install entry point for the **iScope Debugger SDK** —
|
|
@@ -108,4 +108,4 @@ for the full tool reference.
|
|
|
108
108
|
|
|
109
109
|
## License
|
|
110
110
|
|
|
111
|
-
MIT — see [`LICENSE`](
|
|
111
|
+
MIT — see [`LICENSE`](https://unpkg.com/@i-scope/debugger/LICENSE).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@i-scope/debugger",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "iScope Debugger — meta-package. Single-install entry point for the full debugger SDK: DAP adapter for IDE integrations, MCP server for AI agents, Win32 native helper bridge, source-map / VLST / COM-protocol building blocks. Pure dependency umbrella; no runtime code of its own.",
|
|
6
6
|
"keywords": [
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"homepage": "https://gitlab.com/i-scope/Debugger",
|
|
21
21
|
"repository": {
|
|
22
22
|
"type": "git",
|
|
23
|
-
"url": "https://gitlab.com/i-scope/Debugger.git",
|
|
23
|
+
"url": "git+https://gitlab.com/i-scope/Debugger.git",
|
|
24
24
|
"directory": "packages/debugger"
|
|
25
25
|
},
|
|
26
26
|
"bugs": {
|
|
@@ -31,6 +31,9 @@
|
|
|
31
31
|
"CHANGELOG.md",
|
|
32
32
|
"LICENSE"
|
|
33
33
|
],
|
|
34
|
+
"scripts": {
|
|
35
|
+
"build": "node -e \"process.exit(0)\""
|
|
36
|
+
},
|
|
34
37
|
"engines": {
|
|
35
38
|
"node": ">=20"
|
|
36
39
|
},
|