@firebase-oss/ui-core 0.0.1 → 0.0.2
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/LICENSE +202 -0
- package/brands/facebook/logo.svg +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +580 -12
- package/dist/index.d.ts +580 -12
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +34 -33
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firebase-oss/ui-core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "Core authentication service for Firebase UI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -18,25 +18,6 @@
|
|
|
18
18
|
"dist",
|
|
19
19
|
"brands"
|
|
20
20
|
],
|
|
21
|
-
"scripts": {
|
|
22
|
-
"prepare": "pnpm run build",
|
|
23
|
-
"emulators:start": "firebase emulators:start -P demo-firebaseui",
|
|
24
|
-
"build": "tsup",
|
|
25
|
-
"build:local": "pnpm run build && pnpm pack",
|
|
26
|
-
"dev": "tsup --watch",
|
|
27
|
-
"lint": "eslint . --ext .ts",
|
|
28
|
-
"lint:fix": "eslint . --ext .ts --fix",
|
|
29
|
-
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
30
|
-
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
31
|
-
"clean": "rimraf dist",
|
|
32
|
-
"test:unit": "vitest run src",
|
|
33
|
-
"test:unit:watch": "vitest tests",
|
|
34
|
-
"test:integration": "vitest run tests",
|
|
35
|
-
"test:integration:watch": "vitest integration",
|
|
36
|
-
"test": "vitest run",
|
|
37
|
-
"publish:tags": "sh -c 'TAG=\"${npm_package_name}@${npm_package_version}\"; git tag --list \"$TAG\" | grep . || git tag \"$TAG\"; git push origin \"$TAG\"'",
|
|
38
|
-
"release": "pnpm run build && pnpm pack --pack-destination --pack-destination ../../releases/"
|
|
39
|
-
},
|
|
40
21
|
"keywords": [
|
|
41
22
|
"firebase",
|
|
42
23
|
"auth",
|
|
@@ -46,24 +27,44 @@
|
|
|
46
27
|
"author": "TODO",
|
|
47
28
|
"license": "MIT",
|
|
48
29
|
"peerDependencies": {
|
|
49
|
-
"firebase": "
|
|
30
|
+
"firebase": "^11 || ^12"
|
|
50
31
|
},
|
|
51
32
|
"dependencies": {
|
|
52
|
-
"@firebase-oss/ui-translations": "workspace:*",
|
|
53
33
|
"libphonenumber-js": "^1.12.23",
|
|
54
|
-
"nanostores": "
|
|
34
|
+
"nanostores": "^1.0.1",
|
|
55
35
|
"qrcode-generator": "^2.0.4",
|
|
56
|
-
"zod": "
|
|
36
|
+
"zod": "4.1.12",
|
|
37
|
+
"@firebase-oss/ui-translations": "0.0.2"
|
|
57
38
|
},
|
|
58
39
|
"devDependencies": {
|
|
59
40
|
"@types/google-one-tap": "^1.2.6",
|
|
60
|
-
"@types/jsdom": "
|
|
61
|
-
"firebase": "
|
|
62
|
-
"jsdom": "
|
|
63
|
-
"rimraf": "
|
|
64
|
-
"tsup": "
|
|
65
|
-
"typescript": "
|
|
66
|
-
"vite": "
|
|
67
|
-
"vitest": "
|
|
41
|
+
"@types/jsdom": "^21.1.7",
|
|
42
|
+
"firebase": "^11.10.0",
|
|
43
|
+
"jsdom": "^26.1.0",
|
|
44
|
+
"rimraf": "^6.0.1",
|
|
45
|
+
"tsup": "8.5.0",
|
|
46
|
+
"typescript": "^5.9.2",
|
|
47
|
+
"vite": "^7.1.5",
|
|
48
|
+
"vitest": "^3.2.4"
|
|
49
|
+
},
|
|
50
|
+
"scripts": {
|
|
51
|
+
"emulators:start": "firebase emulators:start -P demo-firebaseui",
|
|
52
|
+
"build": "tsup --env.PROD=true",
|
|
53
|
+
"build:local": "pnpm run build && pnpm pack",
|
|
54
|
+
"dev": "tsup --watch",
|
|
55
|
+
"lint": "eslint . --ext .ts",
|
|
56
|
+
"lint:fix": "eslint . --ext .ts --fix",
|
|
57
|
+
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
58
|
+
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
59
|
+
"clean": "rimraf dist",
|
|
60
|
+
"test:unit": "vitest run src",
|
|
61
|
+
"test:unit:watch": "vitest tests",
|
|
62
|
+
"test:integration": "vitest run tests",
|
|
63
|
+
"test:integration:watch": "vitest integration",
|
|
64
|
+
"test": "vitest run",
|
|
65
|
+
"version:bump": "pnpm version patch",
|
|
66
|
+
"publish:tags": "sh -c 'TAG=\"${npm_package_name}@${npm_package_version}\"; git tag --list \"$TAG\" | grep . || git tag \"$TAG\"; git push origin \"$TAG\"'",
|
|
67
|
+
"publish:npm": "pnpm publish --access public --tag beta",
|
|
68
|
+
"release": "pnpm run build && pnpm pack --pack-destination --pack-destination ../../releases/"
|
|
68
69
|
}
|
|
69
|
-
}
|
|
70
|
+
}
|