-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.17 KB
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
{
"name": "dcp",
"version": "2.0.2",
"description": "Delegated Custody Protocol (DCP) reference implementation",
"private": true,
"packageManager": "pnpm@9.15.0",
"scripts": {
"preinstall": "node scripts/check-node-version.mjs && npx only-allow pnpm",
"prepare": "git config core.hooksPath .githooks || true",
"build": "pnpm -r --filter @dcprotocol/wallet-core run build && pnpm -r --filter @dcprotocol/core run build && pnpm -r run build",
"dev:cli": "pnpm -r --filter @dcprotocol/wallet-core run build && pnpm -r --filter @dcprotocol/core run build && pnpm --filter @dcprotocol/vault run dev --",
"test": "pnpm -r run test",
"clean": "rm -rf packages/*/dist",
"publish-guard": "node scripts/publish-guard.mjs"
},
"keywords": [
"vault",
"crypto",
"solana",
"mcp",
"ai-agents",
"wallet",
"security"
],
"repository": {
"type": "git",
"url": "git+https://github.com/1lystore/dcp.git"
},
"homepage": "https://github.com/1lystore/dcp#readme",
"bugs": {
"url": "https://github.com/1lystore/dcp/issues"
},
"author": "DCP Protocol",
"license": "Apache-2.0",
"engines": {
"node": ">=22 <23"
}
}