-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.31 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
{
"name": "clippy",
"displayName": "Clippy",
"productName": "Clippy",
"description": "Clipboard manager with RPC",
"version": "0.15.0",
"author": "AndreasArvidsson",
"license": "MIT",
"main": "out/main.js",
"scripts": {
"clean": "rm -rf out dist",
"start": "npm run build && electron .",
"build": "npm run compile && npm run prepareAssets",
"compile": "tsc -p .",
"prepareAssets": "tsx prepareAssets.ts",
"package": "npm run build && tsx package.ts",
"test": "eslint src && prettier --check .",
"fix": "prettier --write ."
},
"dependencies": {
"bootstrap": "5.3.3",
"clipboard-event": "1.6.0",
"react": "18.2.0",
"react-bootstrap-icons": "1.11.4",
"react-dom": "18.2.0",
"talon-rpc": "2.1.0",
"uuid": "9.0.1"
},
"devDependencies": {
"@electron/packager": "18.3.2",
"@types/node": "20.12.7",
"@types/react-dom": "18.2.25",
"@types/uuid": "9.0.8",
"@typescript-eslint/eslint-plugin": "7.7.1",
"@typescript-eslint/parser": "7.7.1",
"electron": "30.0.1",
"eslint": "8.56.0",
"eslint-plugin-react": "7.34.1",
"prettier": "3.2.5",
"tsx": "4.17.0",
"typescript": "5.4.5"
}
}