passkey-kit 0.0.15 → 0.0.16

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.
Files changed (2) hide show
  1. package/_package.json +1 -0
  2. package/package.json +1 -2
package/_package.json CHANGED
@@ -7,6 +7,7 @@
7
7
  "scripts": {
8
8
  "build:demo": "cd demo && pnpm i && pnpm run build",
9
9
  "prepare": "pnpm build",
10
+ "preinstall": "npm run build -w passkey-factory-sdk && npm run build -w passkey-kit-sdk && pnpm run build",
10
11
  "build": "npx tsc && node esbuild.js",
11
12
  "publish": "pnpm run build && npm publish",
12
13
  "publish:workspaces": "pnpm run build && npm publish --workspaces",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "passkey-kit",
3
- "version": "0.0.15",
3
+ "version": "0.0.16",
4
4
  "type": "module",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./lib/index.d.ts",
@@ -24,7 +24,6 @@
24
24
  ],
25
25
  "scripts": {
26
26
  "build:demo": "cd demo && pnpm i && pnpm run build",
27
- "preinstall": "npm run build -w passkey-factory-sdk && npm run build -w passkey-kit-sdk && pnpm run build",
28
27
  "build": "tsc && node esbuild.js"
29
28
  }
30
29
  }