-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.06 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "macos-react-webview",
"private": true,
"version": "0.0.0",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "BUILD_TYPE=Debug bun scripts/build.ts",
"format:native": "swift-format format -i ./macos/WebViewHost/WebViewHost/**/*.swift",
"lint": "bun --filter '*' lint",
"lint:fix": "bun --filter '*' lint:fix",
"lint:native": "swiftlint --config .swiftlint.yml",
"lint:native:fix": "swiftlint --fix --config .swiftlint.yml",
"release": "BUILD_TYPE=Release bun scripts/build.ts"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"chalk": "^4.0.0",
"concurrently": "^9.1.2",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.5.3",
"typescript": "~5.7.2",
"typescript-eslint": "^8.24.1"
}
}