-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.45 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.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
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
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "tempdlm",
"version": "1.1.1",
"description": "A lightweight desktop application that prevents Downloads folder clutter by letting you set auto-deletion timers when files are downloaded.",
"main": "dist-electron/main/index.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"dist:win": "npm run build && electron-builder --win",
"dist:mac": "npm run build && electron-builder --mac",
"dist:linux": "npm run build && electron-builder --linux",
"test": "vitest",
"test:unit": "vitest run",
"test:watch": "vitest watch",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"lint:maintainability": "eslint --config eslint.maintainability.mjs src",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/shivanshshrivas/tempdlm.git"
},
"keywords": [
"download-manager",
"downloads-folder",
"auto-delete",
"file-cleanup",
"file-watcher",
"electron",
"react",
"windows"
],
"author": "",
"license": "CC-BY-NC-ND-4.0",
"bugs": {
"url": "https://github.com/shivanshshrivas/tempdlm/issues"
},
"homepage": "https://github.com/shivanshshrivas/tempdlm#readme",
"dependencies": {
"@tanstack/react-table": "^8.21.3",
"chokidar": "^5.0.0",
"electron-log": "^5.4.3",
"electron-store": "^11.0.2",
"electron-updater": "^6.8.3",
"node-schedule": "^2.1.1",
"proper-lockfile": "^4.1.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-window": "^2.2.7",
"trash": "^10.1.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.3.0",
"@types/node-schedule": "^2.1.8",
"@types/proper-lockfile": "^4.1.4",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-window": "^1.8.8",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/ui": "^4.0.18",
"electron": "^40.6.0",
"electron-builder": "^26.8.1",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^61.7.1",
"eslint-plugin-react-hooks": "^7.0.1",
"jsdom": "^27.0.1",
"markdown-link-check": "^3.14.2",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vite": "^7.3.1",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6",
"vitest": "^4.0.18"
},
"overrides": {
"tar": "^7.5.10"
},
"build": {
"appId": "com.tempdlm.app",
"productName": "TempDLM",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*",
"assets/**/*"
],
"win": {
"target": "nsis",
"icon": "assets/icon.ico"
},
"publish": {
"provider": "github",
"owner": "shivanshshrivas",
"repo": "tempdlm"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"artifactName": "tempdlm_setup_${version}.exe",
"installerIcon": "assets/icon.ico",
"uninstallerIcon": "assets/icon.ico",
"installerHeaderIcon": "assets/icon.ico",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "TempDLM"
}
}
}