Skip to content

Commit ac69e24

Browse files
committed
chore(core): updasted package json config
1 parent 14bb526 commit ac69e24

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

packages/core/package.json

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,28 @@
1111
"types": "./dist/index.d.ts",
1212
"import": "./dist/index.js",
1313
"require": "./dist/index.cjs"
14-
}
14+
},
15+
"./brands/*": "./brands/*"
1516
},
1617
"files": [
17-
"dist"
18+
"dist",
19+
"brands"
1820
],
1921
"scripts": {
2022
"prepare": "pnpm run build",
2123
"emulators:start": "firebase emulators:start -P demo-firebaseui",
2224
"build": "tsup",
2325
"build:local": "pnpm run build && pnpm pack",
2426
"dev": "tsup --watch",
25-
"lint": "tsc --noEmit",
27+
"lint": "eslint . --ext .ts",
28+
"lint:fix": "eslint . --ext .ts --fix",
2629
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
30+
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
2731
"clean": "rimraf dist",
28-
"test:unit": "vitest run tests/unit",
29-
"test:unit:watch": "vitest tests/unit",
30-
"test:integration": "vitest run tests/integration",
31-
"test:integration:watch": "vitest tests/integration",
32+
"test:unit": "vitest run src",
33+
"test:unit:watch": "vitest tests",
34+
"test:integration": "vitest run tests",
35+
"test:integration:watch": "vitest integration",
3236
"test": "vitest run",
3337
"publish:tags": "sh -c 'TAG=\"${npm_package_name}@${npm_package_version}\"; git tag --list \"$TAG\" | grep . || git tag \"$TAG\"; git push origin \"$TAG\"'",
3438
"release": "pnpm run build && pnpm pack --pack-destination --pack-destination ../../releases/"
@@ -46,7 +50,9 @@
4650
},
4751
"dependencies": {
4852
"@invertase/firebaseui-translations": "workspace:*",
49-
"nanostores": "^0.11.3",
53+
"libphonenumber-js": "^1.12.23",
54+
"nanostores": "catalog:",
55+
"qrcode-generator": "^2.0.4",
5056
"zod": "^3.24.1"
5157
},
5258
"devDependencies": {

0 commit comments

Comments
 (0)