passkey-kit 0.8.4 → 0.8.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/clone-js-sdk.sh CHANGED
File without changes
package/package.json CHANGED
@@ -1,40 +1,26 @@
1
1
  {
2
2
  "name": "passkey-kit",
3
- "version": "0.8.4",
3
+ "version": "0.8.5",
4
4
  "description": "A helper library for creating and using smart wallet accounts on the Stellar blockchain.",
5
5
  "author": "Tyler van der Hoeven",
6
6
  "license": "MIT",
7
7
  "type": "module",
8
8
  "main": "src/index.ts",
9
9
  "types": "types/index.d.ts",
10
- "scripts": {
11
- "build:demo": "cd demo && npm --workspaces=false install && npm run build",
12
- "deploy:demo": "npx wrangler pages deploy",
13
- "deploy:demo:prod": "npx wrangler pages deploy --env production",
14
- "prepublishOnly": "npm run build",
15
- "build:sac": "npm --workspace=sac-sdk run build",
16
- "build:pfs": "npm --workspace=passkey-factory-sdk run build",
17
- "build:pks": "npm --workspace=passkey-kit-sdk run build",
18
- "build": "npm run build:sac && npm run build:pfs && npm run build:pks && tsc",
19
- "ext:cp": "./clone-js-sdk.sh"
20
- },
21
10
  "dependencies": {
22
11
  "@simplewebauthn/browser": "^10.0.0",
23
12
  "@stellar/stellar-sdk": "13.0.0-beta.1",
24
13
  "base64url": "^3.0.1",
25
14
  "buffer": "^6.0.3",
26
- "passkey-factory-sdk": "workspace:*",
27
- "passkey-kit-sdk": "workspace:*",
28
- "sac-sdk": "workspace:*"
15
+ "passkey-factory-sdk": "0.3.4",
16
+ "passkey-kit-sdk": "0.3.4",
17
+ "sac-sdk": "0.1.1"
29
18
  },
30
19
  "devDependencies": {
31
20
  "@simplewebauthn/types": "^10.0.0",
32
21
  "@types/node": "^22.7.4",
33
22
  "typescript": "^5.6.2"
34
23
  },
35
- "workspaces": [
36
- "packages/*"
37
- ],
38
24
  "engine": {
39
25
  "node": ">=20"
40
26
  },
@@ -58,5 +44,15 @@
58
44
  "bugs": {
59
45
  "url": "https://github.com/kalepail/passkey-kit/issues"
60
46
  },
61
- "homepage": "https://github.com/kalepail/passkey-kit/blob/main/README.md"
62
- }
47
+ "homepage": "https://github.com/kalepail/passkey-kit/blob/main/README.md",
48
+ "scripts": {
49
+ "build:demo": "cd demo && pnpm --ignore-workspace install && pnpm run build",
50
+ "deploy:demo": "npx wrangler pages deploy",
51
+ "deploy:demo:prod": "npx wrangler pages deploy --env production",
52
+ "build:sac": "pnpm --filter=sac-sdk run build",
53
+ "build:pfs": "pnpm --filter=passkey-factory-sdk run build",
54
+ "build:pks": "pnpm --filter=passkey-kit-sdk run build",
55
+ "build": "pnpm run build:sac && pnpm run build:pfs && pnpm run build:pks && tsc",
56
+ "ext:cp": "./clone-js-sdk.sh"
57
+ }
58
+ }
@@ -5,7 +5,7 @@
5
5
  "main": "src/index.ts",
6
6
  "types": "types/index.d.ts",
7
7
  "scripts": {
8
- "prepublishOnly": "npm run build",
8
+ "prepublishOnly": "pnpm run build",
9
9
  "build": "tsc"
10
10
  },
11
11
  "dependencies": {
@@ -5,7 +5,7 @@
5
5
  "main": "src/index.ts",
6
6
  "types": "types/index.d.ts",
7
7
  "scripts": {
8
- "prepublishOnly": "npm run build",
8
+ "prepublishOnly": "pnpm run build",
9
9
  "build": "tsc"
10
10
  },
11
11
  "dependencies": {
@@ -5,7 +5,7 @@
5
5
  "main": "src/index.ts",
6
6
  "types": "types/index.d.ts",
7
7
  "scripts": {
8
- "prepublishOnly": "npm run build",
8
+ "prepublishOnly": "pnpm run build",
9
9
  "build": "tsc"
10
10
  },
11
11
  "dependencies": {
@@ -0,0 +1,2 @@
1
+ packages:
2
+ - 'packages/**'