-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 923 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 923 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "create-shieldedvault",
"version": "0.1.0",
"description": "Scaffold an AI agent with split-key custody, attestation, payments, and MCP tool discovery. ShieldedVault in 2 minutes.",
"type": "module",
"main": "dist/index.js",
"bin": {
"create-shieldedvault": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"prepack": "npm run build",
"start": "node dist/index.js"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"keywords": [
"shieldedvault",
"zcash",
"agent",
"custody",
"mcp",
"x402",
"attestation",
"zap1",
"scaffolder",
"create"
],
"author": "Zk-nd3r <zk-nd3r@users.noreply.github.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Frontier-Compute/create-shieldedvault.git"
}
}