-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.2 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.2 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
{
"name": "cursor-overlay",
"version": "1.0.0",
"description": "Transparent floating overlay that displays active Cursor AI and Claude Code agents in real-time",
"main": "dist/main.js",
"scripts": {
"build": "pnpm run build:main && pnpm run build:renderer",
"build:main": "tsc",
"build:renderer": "tsc -p tsconfig.renderer.json",
"watch": "concurrently \"tsc --watch\" \"tsc -p tsconfig.renderer.json --watch\"",
"start": "pnpm run build && electron .",
"dev": "pnpm run build && pnpm run build-css-prod && concurrently \"pnpm run watch\" \"pnpm run build-css\" \"electron .\"",
"build-css": "tailwindcss -i ./input.css -o ./dist.css --watch",
"build-css-prod": "tailwindcss -i ./input.css -o ./dist.css --minify",
"lint": "eslint src/**/*.{ts,tsx}",
"lint:fix": "eslint src/**/*.{ts,tsx} --fix",
"lint:check": "eslint src/**/*.{ts,tsx} --max-warnings 0",
"rebuild": "npx @electron/rebuild -f -w better-sqlite3",
"postinstall": "electron-builder install-app-deps && npm run rebuild",
"pack": "pnpm run build && pnpm run build-css-prod && electron-builder --dir --publish=never"
},
"keywords": [
"cursor",
"overlay",
"ai",
"agents",
"claude code"
],
"author": "Nikita Podelenko (@Hormold)",
"license": "MIT",
"repository": "https://github.com/Hormold/cursor-overlay",
"packageManager": "pnpm@10.15.1",
"devDependencies": {
"@electron/rebuild": "^4.0.1",
"@tailwindcss/cli": "^4.1.13",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.5.2",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"concurrently": "^9.2.1",
"electron": "^38.1.2",
"electron-builder": "^26.0.12",
"eslint": "^9.36.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"prebuild-install": "^7.1.3",
"tailwindcss": "^4.1.13",
"typescript": "^5.9.2"
},
"dependencies": {
"better-sqlite3": "11.10.0",
"date-fns": "^4.1.0",
"lucide-react": "^0.544.0",
"preact": "^10.27.2",
"react": "npm:@preact/compat@^18.3.1",
"react-dom": "npm:@preact/compat@^18.3.1"
}
}