-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.65 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.65 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
{
"name": "clippy",
"displayName": "Clippy",
"productName": "Clippy",
"description": "Clipboard manager with RPC",
"version": "0.29.0",
"author": "AndreasArvidsson",
"license": "MIT",
"main": "out/main.js",
"scripts": {
"clean": "rm -rf out dist",
"start": "electron-vite dev",
"build": "electron-vite build",
"package": "npm run clean && npm run build && tsx ./scripts/package.mts",
"typecheck": "tsc -p . && tsc -p src/renderer",
"lint:ts": "oxlint -c oxlint.config.mts --deny-warnings .",
"lint:fmt": "oxfmt --check .",
"lint": "npm run typecheck && npm run lint:ts && npm run lint:fmt",
"fix:ts": "oxlint -c oxlint.config.mts --fix .",
"fix:fmt": "oxfmt .",
"fix": "npm run fix:ts && npm run fix:fmt",
"test": "tsx ./src/tests/runAllTests.ts"
},
"dependencies": {
"bootstrap": "^5.3.8",
"clipboard-event": "^1.6.0",
"preact": "^10.29.0",
"react-bootstrap-icons": "^1.11.6",
"sharp": "^0.34.5",
"talon-rpc": "^2.2.0",
"uuid": "^13.0.0"
},
"devDependencies": {
"@electron/packager": "^19.1.0",
"@preact/preset-vite": "^2.10.5",
"@types/mocha": "^10.0.10",
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
"electron-vite": "^5.0.0",
"electron": "^41.1.0",
"fast-glob": "^3.3.3",
"mocha": "^11.7.5",
"oxfmt": "^0.42.0",
"oxlint-tsgolint": "^0.18.1",
"oxlint": "^1.57.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vite-plugin-purgecss": "^0.2.13"
}
}