-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.45 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.45 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
{
"name": "paste-wise",
"productName": "PasteWise",
"version": "1.0.0",
"description": "Paste wisely, communicate better.",
"main": ".vite/build/main.js",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write .",
"prepare": "husky",
"rebuild": "electron-rebuild -f -w better-sqlite3"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"src/**/*.{json,md,css,scss}": [
"prettier --write"
]
},
"keywords": [],
"author": {
"name": "codewith-MJ",
"email": "c0d3with.mj@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@electron-forge/cli": "^7.9.0",
"@electron-forge/maker-deb": "^7.9.0",
"@electron-forge/maker-rpm": "^7.9.0",
"@electron-forge/maker-squirrel": "^7.9.0",
"@electron-forge/maker-zip": "^7.9.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.9.0",
"@electron-forge/plugin-fuses": "^7.9.0",
"@electron-forge/plugin-vite": "^7.9.0",
"@electron/fuses": "^1.8.0",
"@rollup/plugin-commonjs": "^28.0.6",
"@tailwindcss/postcss": "^4.1.13",
"@types/better-sqlite3": "^7.6.13",
"@types/electron-squirrel-startup": "^1.0.2",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^4.7.0",
"electron": "38.1.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.13",
"typescript": "^5.9.2",
"vite": "^5.4.20"
},
"dependencies": {
"@electron/rebuild": "^3.7.2",
"better-sqlite3": "^12.4.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"electron-squirrel-startup": "^1.0.1",
"lucide-react": "^0.544.0",
"pino": "^9.11.0",
"pino-pretty": "^13.1.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-icons": "^5.5.0",
"react-router-dom": "^7.9.1",
"react-spinners": "^0.17.0",
"zod": "^4.1.11",
"zustand": "^5.0.8"
}
}