-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.13 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.13 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
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": "prowl",
"version": "1.54.2",
"description": "A cat that watches your background jobs from the macOS menubar",
"main": "dist/main/index.js",
"type": "commonjs",
"author": "BangDori",
"private": true,
"scripts": {
"dev": "concurrently \"bun run dev:main\" \"bun run dev:renderer\" \"bun run dev:electron\"",
"dev:main": "concurrently \"tsc -p tsconfig.main.json -w\" \"tsc-alias -p tsconfig.main.json -w\"",
"dev:renderer": "vite",
"dev:electron": "electronmon . --dev",
"build": "bun run build:main && bun run build:renderer",
"build:main": "tsc -p tsconfig.main.json && tsc-alias -p tsconfig.main.json",
"build:renderer": "vite build",
"start": "electron .",
"package": "bun run build && electron-builder",
"lint": "biome check src",
"lint:fix": "biome check --write src",
"format": "biome format --write src",
"test": "vitest run",
"test:watch": "vitest",
"postinstall": "node node_modules/electron/install.js",
"prepare": "husky",
"version-packages": "changeset version && node scripts/fix-changelog-headings.js",
"e2e:test": "npx playwright test",
"e2e:test:ui": "npx playwright test --ui"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.29",
"@tanstack/react-query": "^5.90.21",
"ai": "^6.0.86",
"electron-store": "^8.1.0",
"lucide-react": "^0.563.0",
"plist": "^3.1.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@playwright/test": "^1.58.2",
"@prowl/changelog": "file:./scripts",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^20.10.0",
"@types/plist": "^3.0.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.2",
"electron": "^28.1.0",
"electron-builder": "^24.9.1",
"electronmon": "^2.0.4",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"lint-staged": "^16.2.7",
"playwright": "^1.58.2",
"postcss": "^8.4.32",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.4.0",
"tsc-alias": "^1.8.16",
"tsx": "^4.21.0",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vitest": "^2.1.9"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"biome check --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/BangDori/prowl"
},
"build": {
"appId": "com.bangdori.prowl",
"productName": "Prowl",
"publish": null,
"asar": true,
"npmRebuild": true,
"mac": {
"category": "public.app-category.utilities",
"icon": "assets/icon.icns",
"target": [
"dmg",
"zip"
]
},
"files": [
"dist/**/*",
"assets/**/*",
"splash.html",
"package.json"
],
"directories": {
"output": "release"
}
}
}