-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.94 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
{
"name": "vscode-bookmark",
"productName": "VSCode Bookmark",
"description": "A utility to save your favorite projects and open them easily in vscode.",
"version": "1.5.1",
"author": "Ailton Loures",
"homepage": "https://github.com/ailtonloures/vscode-bookmark#readme",
"repository": {
"type": "git",
"url": "https://github.com/ailtonloures/vscode-bookmark.git",
"docs": "https://github.com/ailtonloures/vscode-bookmark/blob/main/README.md",
"owner": "ailtonloures"
},
"keywords": [
"electron",
"nodejs",
"javascript",
"esm",
"electron-forge",
"electron-store",
"vscode",
"desktop",
"sentry",
"vite"
],
"license": "MIT",
"main": ".vite/build/main.js",
"scripts": {
"start": "electron-forge start --enable-logging",
"make:icons": "electron-icon-maker --input=./assets/icons/icon.png --output=./assets",
"lint": "prettier --write . && eslint --fix",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"prepare": "husky"
},
"dependencies": {
"@sentry/electron": "^5.4.0",
"electron-squirrel-startup": "^1.0.1",
"electron-store": "^10.0.0",
"update-electron-app": "^3.1.0"
},
"devDependencies": {
"@electron-forge/cli": "^7.4.0",
"@electron-forge/maker-deb": "^7.4.0",
"@electron-forge/maker-rpm": "^7.4.0",
"@electron-forge/maker-squirrel": "^7.4.0",
"@electron-forge/maker-zip": "^7.4.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.4.0",
"@electron-forge/plugin-fuses": "^7.4.0",
"@electron-forge/plugin-vite": "^7.4.0",
"@electron-forge/publisher-github": "^7.4.0",
"@electron/fuses": "^1.8.0",
"@eslint/js": "^9.9.1",
"electron": "32.1.0",
"electron-icon-maker": "^0.0.5",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"vite": "^5.4.10"
}
}