@flowsta/login-button 0.1.0

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,88 @@
1
+ {
2
+ "name": "@flowsta/login-button",
3
+ "version": "0.1.0",
4
+ "description": "Login with Flowsta button components for React, Vue, Qwik, and vanilla JavaScript",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js"
13
+ },
14
+ "./react": {
15
+ "types": "./dist/react.d.ts",
16
+ "import": "./dist/react.js"
17
+ },
18
+ "./vue": {
19
+ "types": "./dist/vue.d.ts",
20
+ "import": "./dist/vue.js"
21
+ },
22
+ "./qwik": {
23
+ "types": "./dist/qwik.d.ts",
24
+ "import": "./dist/qwik.js"
25
+ },
26
+ "./vanilla": {
27
+ "types": "./dist/vanilla.d.ts",
28
+ "import": "./dist/vanilla.js"
29
+ }
30
+ },
31
+ "files": [
32
+ "dist",
33
+ "assets"
34
+ ],
35
+ "scripts": {
36
+ "dev": "vite build --watch",
37
+ "build": "tsc && vite build",
38
+ "test": "echo 'Tests not yet implemented'",
39
+ "prepublishOnly": "npm run build"
40
+ },
41
+ "keywords": [
42
+ "oauth",
43
+ "login",
44
+ "authentication",
45
+ "flowsta",
46
+ "sso",
47
+ "react",
48
+ "vue",
49
+ "qwik",
50
+ "button",
51
+ "pkce"
52
+ ],
53
+ "author": "Flowsta",
54
+ "license": "MIT",
55
+ "repository": {
56
+ "type": "git",
57
+ "url": "https://github.com/WeAreFlowsta/flowsta-sdk.git",
58
+ "directory": "packages/login-button"
59
+ },
60
+ "peerDependencies": {
61
+ "react": "^18.0.0 || ^19.0.0",
62
+ "vue": "^3.0.0",
63
+ "@builder.io/qwik": "^1.0.0"
64
+ },
65
+ "peerDependenciesMeta": {
66
+ "react": {
67
+ "optional": true
68
+ },
69
+ "vue": {
70
+ "optional": true
71
+ },
72
+ "@builder.io/qwik": {
73
+ "optional": true
74
+ }
75
+ },
76
+ "devDependencies": {
77
+ "@builder.io/qwik": "^1.9.0",
78
+ "@types/react": "^18.3.3",
79
+ "@vitejs/plugin-vue": "^6.0.1",
80
+ "react": "^18.3.1",
81
+ "typescript": "^5.5.4",
82
+ "vite": "^5.4.2",
83
+ "vue": "^3.4.0"
84
+ },
85
+ "engines": {
86
+ "node": ">=18.0.0"
87
+ }
88
+ }