labsign 0.1.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/LICENSE +21 -0
- package/README.en.md +108 -0
- package/README.md +119 -0
- package/SECURITY.md +43 -0
- package/dist/THIRD_PARTY_LICENSES.txt +1320 -0
- package/dist/labsign.js +296 -0
- package/dist/ui-app.html +778 -0
- package/dist/ui.html +679 -0
- package/package.json +65 -0
package/package.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "labsign",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Assine PDFs com a sua própria assinatura de dentro do Claude, do Codex e do terminal. Local, sem conta, sem nuvem.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"mcp",
|
|
7
|
+
"mcp-apps",
|
|
8
|
+
"signature",
|
|
9
|
+
"assinatura",
|
|
10
|
+
"pdf",
|
|
11
|
+
"claude",
|
|
12
|
+
"codex",
|
|
13
|
+
"esign"
|
|
14
|
+
],
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"author": "Paulo Labs",
|
|
17
|
+
"type": "module",
|
|
18
|
+
"bin": {
|
|
19
|
+
"labsign": "dist/labsign.js"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist/labsign.js",
|
|
23
|
+
"dist/ui.html",
|
|
24
|
+
"dist/ui-app.html",
|
|
25
|
+
"dist/THIRD_PARTY_LICENSES.txt",
|
|
26
|
+
"README.md",
|
|
27
|
+
"README.en.md",
|
|
28
|
+
"SECURITY.md",
|
|
29
|
+
"LICENSE"
|
|
30
|
+
],
|
|
31
|
+
"engines": {
|
|
32
|
+
"node": ">=22.13"
|
|
33
|
+
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"build": "node scripts/build.mjs",
|
|
36
|
+
"prepack": "node scripts/build.mjs",
|
|
37
|
+
"typecheck": "tsc --noEmit",
|
|
38
|
+
"test": "node scripts/build.mjs && node --test --test-concurrency=1 test/*.test.ts",
|
|
39
|
+
"test:unit": "node --test test/placement.test.ts test/vault.test.ts",
|
|
40
|
+
"mcpb": "node scripts/build.mjs && node scripts/build-mcpb.mjs",
|
|
41
|
+
"sign": "node src/cli/index.ts sign",
|
|
42
|
+
"doctor": "node src/cli/index.ts doctor"
|
|
43
|
+
},
|
|
44
|
+
"overrides": {
|
|
45
|
+
"pdfkit": "^0.20.2",
|
|
46
|
+
"tmp": "^0.2.7"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@anthropic-ai/mcpb": "^2.1.2",
|
|
50
|
+
"@cantoo/pdf-lib": "^2.11.1",
|
|
51
|
+
"@modelcontextprotocol/client": "^2.0.0",
|
|
52
|
+
"@modelcontextprotocol/ext-apps": "^2.0.0",
|
|
53
|
+
"@modelcontextprotocol/server": "^2.0.0",
|
|
54
|
+
"@signpdf/placeholder-plain": "^3.3.0",
|
|
55
|
+
"@signpdf/signer-p12": "^3.3.0",
|
|
56
|
+
"@signpdf/signpdf": "^3.3.0",
|
|
57
|
+
"@types/node": "^26.6.2",
|
|
58
|
+
"esbuild": "^0.28.2",
|
|
59
|
+
"node-forge": "^1.4.0",
|
|
60
|
+
"pdfjs-dist": "^6.3.289",
|
|
61
|
+
"perfect-freehand": "^1.2.3",
|
|
62
|
+
"typescript": "^7.0.2",
|
|
63
|
+
"zod": "^4.6.5"
|
|
64
|
+
}
|
|
65
|
+
}
|