-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
65 lines (65 loc) · 1.71 KB
/
package.json
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
{
"name": "passkey-kit",
"version": "0.10.8",
"description": "A helper library for creating and using smart wallet accounts on the Stellar blockchain.",
"author": "Tyler van der Hoeven",
"license": "MIT",
"type": "module",
"main": "src/index.ts",
"types": "types/index.d.ts",
"scripts": {
"build:demo": "cd demo && pnpm --ignore-workspace install && pnpm run build",
"deploy:demo": "npx wrangler pages deploy",
"deploy:demo:prod": "npx wrangler pages deploy --env production",
"prepublishOnly": "pnpm run build",
"build:sac": "pnpm --filter=sac-sdk run build",
"build:pks": "pnpm --filter=passkey-kit-sdk run build",
"build": "pnpm run build:sac && pnpm run build:pks && tsc",
"ext:cp": "./clone-js-sdk.sh"
},
"dependencies": {
"@simplewebauthn/browser": "^13.0.0",
"@stellar/stellar-sdk": "^13.1.0",
"base64url": "^3.0.1",
"buffer": "^6.0.3",
"passkey-kit-sdk": "workspace:*",
"sac-sdk": "workspace:*"
},
"devDependencies": {
"@simplewebauthn/types": "^12.0.0",
"@types/node": "^22.10.2",
"typescript": "^5.7.2"
},
"pnpm": {
"overrides": {
"@stellar/stellar-sdk": "$@stellar/stellar-sdk"
}
},
"workspaces": [
"packages/*"
],
"engine": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kalepail/passkey-kit.git"
},
"keywords": [
"smart wallet",
"passkey",
"webauthn",
"blockchain",
"stellar",
"web3",
"account abstraction",
"secp256r1",
"ed25519",
"policy signer",
"crypto"
],
"bugs": {
"url": "https://github.com/kalepail/passkey-kit/issues"
},
"homepage": "https://github.com/kalepail/passkey-kit/blob/main/README.md"
}