-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.35 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
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
{
"name": "tray-link",
"version": "1.1.31",
"packageManager": "[email protected]",
"description": "An app to manage your projects from the system tray",
"main": "dist/index.cjs",
"type": "module",
"scripts": {
"lint": "biome lint ./src",
"format": "biome format --write \"./src/**/*.{js,ts}\"",
"build": "tsup --minify",
"watch": "tsup --watch",
"prestart": "npm run build",
"start": "electron-forge start",
"predev": "tsup",
"dev": "cross-env NODE_ENV=development nodemon --watch ./ --exec \"npm run start\" -e ts,js,json -i ./dist",
"prepackage": "npm run build",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish --from-dry-run",
"postinstall": "lefthook install"
},
"repository": "https://github.com/thejoaov/tray-link",
"keywords": [
"Electron",
"typescript",
"Visual Studio Code",
"Terminal",
"system-tray",
"project-management",
"VSCode",
"terminal",
"folder-navigation",
"productivity",
"code-editing",
"developer-tools",
"task-automation",
"quick-access",
"file-organization",
"project-folder",
"code-organization",
"easy-navigation",
"workflow-enhancement",
"developer-productivity",
"cross-platform",
"nodejs"
],
"author": "thejoaov",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@electron-forge/cli": "^6.2.1",
"@electron-forge/maker-deb": "^6.2.1",
"@electron-forge/maker-rpm": "^6.2.1",
"@electron-forge/maker-squirrel": "^6.2.1",
"@electron-forge/maker-zip": "^6.2.1",
"@electron-forge/plugin-auto-unpack-natives": "^6.2.1",
"@electron-forge/publisher-github": "^6.2.1",
"@types/command-exists": "^1.2.0",
"@types/node": "^22.5.2",
"@types/uuid": "^9.0.2",
"cross-env": "^7.0.3",
"electron": "^24.3.0",
"git-commit-msg-linter": "^5.0.8",
"lefthook": "^1.7.15",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.1",
"tsup": "^8.2.4",
"typescript": "^4.8.3"
},
"dependencies": {
"command-exists": "^1.2.9",
"electron-squirrel-startup": "^1.0.0",
"electron-store": "^8.2.0",
"execa": "^2.0.0-alpha.0",
"fix-path": "^3.0.0",
"rimraf": "^5.0.1",
"tsconfig-paths": "^4.2.0",
"update-electron-app": "^2.0.1",
"uuid": "^9.0.0"
}
}