@mintmark/census 0.1.0
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 +201 -0
- package/README.md +41 -0
- package/dist/index.js +1122 -0
- package/package.json +48 -0
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mintmark/census",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Static crawler + threat-intel API + dashboard for the MCP supply chain (the Mintmark census / Dirty Surface Index).",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"mintmark-census": "./dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md",
|
|
13
|
+
"LICENSE"
|
|
14
|
+
],
|
|
15
|
+
"keywords": [
|
|
16
|
+
"mcp",
|
|
17
|
+
"model-context-protocol",
|
|
18
|
+
"supply-chain",
|
|
19
|
+
"security",
|
|
20
|
+
"registry",
|
|
21
|
+
"census",
|
|
22
|
+
"ai-agents"
|
|
23
|
+
],
|
|
24
|
+
"homepage": "https://mintmark.dev",
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "git+https://github.com/nakshatra-nahar/Mintmark.git",
|
|
28
|
+
"directory": "packages/census"
|
|
29
|
+
},
|
|
30
|
+
"bugs": {
|
|
31
|
+
"url": "https://github.com/nakshatra-nahar/Mintmark/issues"
|
|
32
|
+
},
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=22"
|
|
35
|
+
},
|
|
36
|
+
"publishConfig": {
|
|
37
|
+
"access": "public"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"hono": "^4.6.0",
|
|
41
|
+
"@hono/node-server": "^1.13.0",
|
|
42
|
+
"commander": "^12.1.0",
|
|
43
|
+
"@mintmark/core": "0.1.0"
|
|
44
|
+
},
|
|
45
|
+
"scripts": {
|
|
46
|
+
"build": "tsup"
|
|
47
|
+
}
|
|
48
|
+
}
|