@loupekit/sdk 0.4.2 → 0.4.3-next.14
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/README.md +1 -0
- package/package.json +26 -7
package/README.md
CHANGED
|
@@ -19,6 +19,7 @@ comments re-anchor across redeploys and flow to Claude Code as an actionable bac
|
|
|
19
19
|
|
|
20
20
|
<p>
|
|
21
21
|
<a href="https://mohamed-ashraf-elsaed.github.io/loupe/"><b>Website</b></a> ·
|
|
22
|
+
<a href="https://mohamed-ashraf-elsaed.github.io/loupe/guide/"><b>Docs</b></a> ·
|
|
22
23
|
<a href="https://github.com/mohamed-ashraf-elsaed/loupe"><b>GitHub</b></a> ·
|
|
23
24
|
<a href="https://github.com/mohamed-ashraf-elsaed/loupe/blob/main/CHANGELOG.md"><b>Changelog</b></a> ·
|
|
24
25
|
<a href="https://www.npmjs.com/package/@loupekit/mcp"><b>MCP server</b></a>
|
package/package.json
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loupekit/sdk",
|
|
3
|
-
"author": {
|
|
4
|
-
|
|
3
|
+
"author": {
|
|
4
|
+
"name": "Mohamed Ashraf Elsaed",
|
|
5
|
+
"email": "m.ashraf.saed@gmail.com",
|
|
6
|
+
"url": "https://www.linkedin.com/in/mohamedashrafelsaed/"
|
|
7
|
+
},
|
|
8
|
+
"version": "0.4.3-next.14",
|
|
5
9
|
"description": "Embeddable visual-feedback layer: pin comments to the live UI and hand them to Claude.",
|
|
6
10
|
"type": "module",
|
|
7
11
|
"main": "./dist/index.js",
|
|
@@ -13,19 +17,34 @@
|
|
|
13
17
|
"import": "./dist/index.js"
|
|
14
18
|
}
|
|
15
19
|
},
|
|
16
|
-
"files": [
|
|
20
|
+
"files": [
|
|
21
|
+
"dist"
|
|
22
|
+
],
|
|
17
23
|
"scripts": {
|
|
18
24
|
"build": "tsup",
|
|
19
25
|
"dev": "tsup --watch",
|
|
20
26
|
"typecheck": "tsc --noEmit"
|
|
21
27
|
},
|
|
22
|
-
"keywords": [
|
|
28
|
+
"keywords": [
|
|
29
|
+
"feedback",
|
|
30
|
+
"annotation",
|
|
31
|
+
"visual-feedback",
|
|
32
|
+
"product-management",
|
|
33
|
+
"claude",
|
|
34
|
+
"mcp"
|
|
35
|
+
],
|
|
23
36
|
"license": "MIT",
|
|
24
|
-
"repository": {
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "https://github.com/mohamed-ashraf-elsaed/loupe.git",
|
|
40
|
+
"directory": "packages/sdk"
|
|
41
|
+
},
|
|
25
42
|
"homepage": "https://mohamed-ashraf-elsaed.github.io/loupe/",
|
|
26
|
-
"publishConfig": {
|
|
43
|
+
"publishConfig": {
|
|
44
|
+
"access": "public"
|
|
45
|
+
},
|
|
27
46
|
"devDependencies": {
|
|
28
|
-
"@loupekit/shared": "
|
|
47
|
+
"@loupekit/shared": "0.4.3-next.14",
|
|
29
48
|
"modern-screenshot": "^4.6.6"
|
|
30
49
|
}
|
|
31
50
|
}
|