Skip to content

Commit

Permalink
fix: biome linting for package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSinclair committed Sep 10, 2024
1 parent 17c22b2 commit 57ab225
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 7 deletions.
1 change: 1 addition & 0 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"ignore": [
"CHANGELOG.md",
"pnpm-lock.yaml",
"package.json",
"tsconfig.json",
"tsconfig.*.json",
"examples/*",
Expand Down
5 changes: 4 additions & 1 deletion packages/create-rainbowkit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
"name": "@rainbow-me/create-rainbowkit",
"description": "Scaffold a new RainbowKit project",
"version": "0.3.6",
"files": ["dist", "templates"],
"files": [
"dist",
"templates"
],
"license": "MIT",
"type": "module",
"bin": {
Expand Down
14 changes: 12 additions & 2 deletions packages/rainbow-button/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,18 @@
"name": "@rainbow-me/rainbow-button",
"description": "Rainbow connector button",
"version": "0.2.14",
"files": ["dist", "styles.css"],
"keywords": ["rainbow", "wallet", "ethereum", "react", "react-hook", "hooks"],
"files": [
"dist",
"styles.css"
],
"keywords": [
"rainbow",
"wallet",
"ethereum",
"react",
"react-hook",
"hooks"
],
"author": "Rainbow",
"license": "MIT",
"type": "module",
Expand Down
4 changes: 3 additions & 1 deletion packages/rainbowkit-siwe-next-auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
"name": "@rainbow-me/rainbowkit-siwe-next-auth",
"version": "0.4.1",
"description": "RainbowKit authentication adapter for Sign-In with Ethereum and NextAuth.js",
"files": ["dist"],
"files": [
"dist"
],
"type": "module",
"exports": {
".": "./dist/index.js"
Expand Down
19 changes: 16 additions & 3 deletions packages/rainbowkit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
"name": "@rainbow-me/rainbowkit",
"version": "2.1.5",
"description": "The best way to connect a wallet",
"files": ["dist", "styles.css", "wallets"],
"files": [
"dist",
"styles.css",
"wallets"
],
"type": "module",
"exports": {
".": "./dist/index.js",
Expand All @@ -11,7 +15,9 @@
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": ["src/css/reset.css.ts"],
"sideEffects": [
"src/css/reset.css.ts"
],
"engines": {
"node": ">=12.4"
},
Expand All @@ -25,7 +31,14 @@
"typegen": "tsc --emitDeclarationOnly || true",
"typegen:watch": "tsc --emitDeclarationOnly --watch"
},
"keywords": ["ens", "ethereum", "react", "react-hook", "hooks", "blockchain"],
"keywords": [
"ens",
"ethereum",
"react",
"react-hook",
"hooks",
"blockchain"
],
"author": "Rainbow",
"license": "MIT",
"peerDependencies": {
Expand Down

0 comments on commit 57ab225

Please sign in to comment.