|
10 | 10 | "make:linux": "electron-builder --linux", |
11 | 11 | "make:macos": "electron-builder --mac --universal", |
12 | 12 | "make:win": "electron-builder --win", |
13 | | - "prettier:check": "prettier --check '*.{html,js,json,md,ts,tsx}'", |
14 | | - "prettier:apply": "prettier --write '*.{html,js,json,md,ts,tsx}'", |
| 13 | + "lint:check": "biome check *", |
| 14 | + "lint": "biome check --apply *", |
15 | 15 | "test": "jest", |
16 | 16 | "start": "electron . --enable-logging", |
17 | 17 | "prepare": "husky" |
|
50 | 50 | { |
51 | 51 | "name": "Adam Setch", |
52 | 52 | "url": "https://github.com/setchy" |
| 53 | + }, |
| 54 | + { |
| 55 | + "name": "Afonso Ramos", |
| 56 | + "url": "https://github.com/afonsojramos" |
53 | 57 | } |
54 | 58 | ], |
55 | 59 | "license": "MIT", |
|
76 | 80 | "gatekeeperAssess": false, |
77 | 81 | "entitlements": "./entitlements/entitlements.mac.plist", |
78 | 82 | "entitlementsInherit": "./entitlements/entitlements.mac.plist", |
79 | | - "publish": [ |
80 | | - "github" |
81 | | - ], |
| 83 | + "publish": ["github"], |
82 | 84 | "extendInfo": { |
83 | 85 | "NSBluetoothAlwaysUsageDescription": null, |
84 | 86 | "NSBluetoothPeripheralUsageDescription": null, |
|
98 | 100 | "oneClick": false |
99 | 101 | }, |
100 | 102 | "linux": { |
101 | | - "target": [ |
102 | | - "AppImage", |
103 | | - "deb", |
104 | | - "rpm", |
105 | | - "snap" |
106 | | - ], |
| 103 | + "target": ["AppImage", "deb", "rpm", "snap"], |
107 | 104 | "category": "Development", |
108 | 105 | "maintainer": "Emmanouil Konstantinidis" |
109 | 106 | }, |
|
127 | 124 | "typescript": "5.4.4" |
128 | 125 | }, |
129 | 126 | "devDependencies": { |
| 127 | + "@biomejs/biome": "1.6.4", |
130 | 128 | "@electron/notarize": "2.3.0", |
131 | 129 | "@testing-library/react": "14.2.2", |
132 | 130 | "@types/jest": "29.5.12", |
|
146 | 144 | "nock": "13.5.4", |
147 | 145 | "postcss": "8.4.38", |
148 | 146 | "postcss-loader": "8.1.1", |
149 | | - "prettier": "3.2.5", |
150 | 147 | "react-test-renderer": "18.2.0", |
151 | 148 | "rimraf": "5.0.5", |
152 | 149 | "style-loader": "3.3.4", |
|
158 | 155 | }, |
159 | 156 | "packageManager": "pnpm@8.15.6", |
160 | 157 | "lint-staged": { |
161 | | - "*.{html,js,json,md,ts,tsx}": "prettier --write" |
| 158 | + "*.{html,js,json,md,ts,tsx}": "biome format --write" |
162 | 159 | } |
163 | 160 | } |
0 commit comments