-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.91 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@openagentid/sdk",
"version": "0.1.0",
"description": "OpenAgent SDK source package for GitHub installs. The implementation lives in sdks/typescript.",
"private": true,
"license": "Apache-2.0 OR MIT",
"author": "L1fe Labs, Inc. <eng@l1fe.ai>",
"homepage": "https://openagent.id",
"repository": {
"type": "git",
"url": "https://github.com/OpenAgentID/openagent-sdk.git"
},
"type": "module",
"main": "./sdks/typescript/dist/index.cjs",
"module": "./sdks/typescript/dist/index.js",
"types": "./sdks/typescript/dist/index.d.ts",
"exports": {
".": {
"types": "./sdks/typescript/dist/index.d.ts",
"import": "./sdks/typescript/dist/index.js",
"require": "./sdks/typescript/dist/index.cjs"
},
"./agent": {
"types": "./sdks/typescript/dist/agent.d.ts",
"import": "./sdks/typescript/dist/agent.js",
"require": "./sdks/typescript/dist/agent.cjs"
},
"./identity": {
"types": "./sdks/typescript/dist/identity.d.ts",
"import": "./sdks/typescript/dist/identity.js",
"require": "./sdks/typescript/dist/identity.cjs"
},
"./credentials": {
"types": "./sdks/typescript/dist/credentials.d.ts",
"import": "./sdks/typescript/dist/credentials.js",
"require": "./sdks/typescript/dist/credentials.cjs"
},
"./verification": {
"types": "./sdks/typescript/dist/verification.d.ts",
"import": "./sdks/typescript/dist/verification.js",
"require": "./sdks/typescript/dist/verification.cjs"
},
"./skills": {
"types": "./sdks/typescript/dist/skills.d.ts",
"import": "./sdks/typescript/dist/skills.js",
"require": "./sdks/typescript/dist/skills.cjs"
},
"./errors": {
"types": "./sdks/typescript/dist/errors.d.ts",
"import": "./sdks/typescript/dist/errors.js",
"require": "./sdks/typescript/dist/errors.cjs"
}
},
"files": [
"sdks/typescript/dist",
"sdks/typescript/README.md",
"sdks/typescript/CHANGELOG.md",
"sdks/typescript/LICENSE"
],
"sideEffects": false,
"engines": {
"node": ">=20"
},
"scripts": {
"build": "npm --prefix sdks/typescript install --no-package-lock && npm --prefix sdks/typescript run build",
"prepack": "npm run build",
"prepare": "npm run build"
},
"dependencies": {
"zod": "^3.23.8"
},
"peerDependencies": {
"@openagentid/aegis-sdk": "^0.1.0",
"@openagentid/arsenal-sdk": "^0.1.0",
"@openagentid/oas-sdk": "^0.1.0",
"@openagentid/crypto-wasm": "^0.1.0"
},
"peerDependenciesMeta": {
"@openagentid/aegis-sdk": { "optional": true },
"@openagentid/arsenal-sdk": { "optional": true },
"@openagentid/oas-sdk": { "optional": true },
"@openagentid/crypto-wasm": { "optional": true }
},
"keywords": [
"openagent",
"agent",
"authentication",
"identity",
"did",
"oas",
"arsenal",
"aegis",
"credentials",
"autonomous",
"ai"
]
}