-
-
Notifications
You must be signed in to change notification settings - Fork 161
/
package.json
109 lines (109 loc) · 3.73 KB
/
package.json
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "browserosaurus",
"version": "20.9.1",
"description": "The browser prompter for macOS",
"keywords": [
"macOS",
"Electron",
"Browser chooser"
],
"homepage": "https://wstone.io/browserosaurus",
"bugs": {
"url": "https://github.com/will-stone/browserosaurus/issues"
},
"repository": "https://github.com/will-stone/browserosaurus",
"license": "GPL-3.0-only",
"author": "Will Stone",
"type": "module",
"main": ".vite/build/main.js",
"scripts": {
"doctor": "npm run lint && npm run typecheck && npm run test",
"icns": "cd ./src/shared/static/icon && ../../../../scripts/png2icns.sh icon.png",
"lint": "eslint .",
"list-apps": "ts-node ./scripts/list-installed-apps",
"make": "electron-forge make --arch=x64,arm64",
"make:arm": "electron-forge make --arch=arm64",
"make:intel": "electron-forge make --arch=x64",
"prepackage": "rimraf out",
"package": "NODE_ENV=production electron-forge package --platform=darwin --arch=x64,arm64",
"package:arm": "NODE_ENV=production electron-forge package --platform=darwin --arch=arm64",
"package:intel": "NODE_ENV=production electron-forge package --platform=darwin --arch=x64",
"prepare": "husky",
"release": "npm run doctor && bump --commit \"chore: release v\" && npm run make",
"start": "ELECTRON_DISABLE_SECURITY_WARNINGS=true electron-forge start",
"test": "jest",
"typecheck": "tsc --noEmit --skipLibCheck",
"website-css:build": "npx tailwindcss -i node_modules/tailwindcss/tailwind.css -o ./docs/style.css --content docs/index.html -m",
"website-css:watch": "npx tailwindcss -i node_modules/tailwindcss/tailwind.css -o ./docs/style.css --content docs/index.html -m --watch"
},
"dependencies": {
"file-icon": "^5.1.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@electron-forge/cli": "~7.2.0",
"@electron-forge/maker-zip": "~7.2.0",
"@electron-forge/plugin-base": "~7.2.0",
"@electron-forge/plugin-vite": "~7.2.0",
"@electron-forge/plugin-webpack": "~7.2.0",
"@electron-forge/shared-types": "~7.2.0",
"@reduxjs/toolkit": "^2.3.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@timfish/forge-externals-plugin": "^0.2.1",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.17.10",
"@types/node": "^20.16.0",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/react-redux": "^7.1.34",
"@vercel/webpack-asset-relocator-loader": "^1.7.4",
"@will-stone/eslint-config": "^12.0.0",
"@will-stone/prettier-config": "^8.0.1",
"app-exists": "^2.1.1",
"axios": "^1.7.7",
"clsx": "^2.1.1",
"cross-env": "^7.0.3",
"cssnano": "^7.0.6",
"electron": "^33.0.1",
"electron-log": "^5.2.0",
"eslint": "^9.12.0",
"fast-deep-equal": "^3.1.3",
"husky": "^9.1.6",
"immer": "^10.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"lodash": "^4.17.21",
"lowdb": "^6.0.1",
"picocolors": "^1.1.1",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"redux": "^5.0.1",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.14",
"tings": "^9.1.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"version-bump-prompt": "^6.1.0",
"vite": "^5.4.9"
},
"engines": {
"node": ">=16.0.0"
},
"overrides": {
"eslint": "^9.12.0",
"vite": "^5.4.9"
},
"productName": "Browserosaurus"
}