@benji-money/connect-sdk 1.0.7

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/package.json ADDED
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "@benji-money/connect-sdk",
3
+ "version": "1.0.7",
4
+ "description": "Benji Connect SDK for authentication and verification",
5
+ "type": "module",
6
+ "main": "dist/index.cjs",
7
+ "module": "dist/index.js",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js",
12
+ "require": "./dist/index.cjs",
13
+ "default": "./dist/index.js"
14
+ },
15
+ "./package.json": "./package.json"
16
+ },
17
+ "unpkg": "dist/connect-sdk.umd.js",
18
+ "jsdelivr": "dist/connect-sdk.umd.js",
19
+ "types": "dist/index.d.ts",
20
+ "files": [
21
+ "dist"
22
+ ],
23
+ "scripts": {
24
+ "clean": "rimraf dist",
25
+ "build": "tsup --dts",
26
+ "dev": "tsup --watch",
27
+ "prepack": "npm run build",
28
+ "yalc:publish": "npm run build && yalc publish",
29
+ "yalc:push": "npm run build && yalc push --changed",
30
+ "yalc:watch": "run-p watch:build watch:push",
31
+ "watch:build": "tsup --watch",
32
+ "watch:push": "yalc push --changed"
33
+ },
34
+ "publishConfig": {
35
+ "registry": "https://npm.pkg.github.com",
36
+ "access": "public"
37
+ },
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "git+https://github.com/benji-money/benji-connect-sdk.git"
41
+ },
42
+ "keywords": [
43
+ "benji",
44
+ "authentication",
45
+ "sdk"
46
+ ],
47
+ "author": "Benji Money",
48
+ "license": "SEE LICENSE IN LICENSE",
49
+ "devDependencies": {
50
+ "@changesets/changelog-github": "^0.5.1",
51
+ "@changesets/cli": "^2.29.7",
52
+ "rimraf": "^6.1.2",
53
+ "tsup": "^8.5.0",
54
+ "typescript": "^5.9.3",
55
+ "yalc": "^1.0.0-pre.53"
56
+ },
57
+ "bugs": {
58
+ "url": "https://github.com/benji-money/benji-connect-sdk/issues"
59
+ },
60
+ "homepage": "https://github.com/benji-money/benji-connect-sdk#readme",
61
+ "benji": {
62
+ "namespace": "benji-connect-sdk"
63
+ },
64
+ "dependencies": {
65
+ "@bugsnag/browser-performance": "^3.0.0",
66
+ "@bugsnag/js": "^8.6.0",
67
+ "mixpanel-browser": "^2.71.1"
68
+ }
69
+ }