-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.02 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.02 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
{
"name": "openbotauth-demos",
"version": "0.1.0",
"description": "Demo applications showcasing OpenBotAuth RFC 9421 signed fetch (unsigned → teaser/402, signed → full content)",
"private": true,
"type": "module",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"build": "pnpm -r build",
"dev:widget-backend": "pnpm -F @oba-demos/widget-backend dev",
"dev:widget-frontend": "pnpm -F @oba-demos/widget-frontend dev",
"dev:tap-voice-backend": "pnpm -F @oba-demos/tap-voice-agents-backend dev",
"dev:tap-voice-frontend": "pnpm -F @oba-demos/tap-voice-agents-frontend dev",
"test": "pnpm -r test",
"lint": "pnpm -r lint",
"clean": "pnpm -r clean && rm -rf node_modules"
},
"keywords": [
"openbotauth",
"rfc9421",
"http-signatures",
"ed25519",
"agent-auth",
"web-bot-auth"
],
"author": "OpenBotAuth Contributors",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/hammadtq/openbotauth-demos"
}
}