-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.46 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
{
"name": "code-sync-app",
"version": "1.0.0",
"description": "Application de synchronisation de code en temps réel",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"dev": "electron . --dev",
"build": "electron-builder --win --x64",
"build-simple": "electron-builder --dir",
"build-portable": "electron-builder --win portable --x64",
"build-working": "npx electron-packager . CodeSync --platform=win32 --arch=x64 --out=dist --overwrite",
"build-installer": "electron-builder --win nsis --x64",
"pack": "electron-builder --dir",
"install-deps": "npm install",
"publish-update": "electron-builder --win --publish=always"
},
"keywords": [
"sync",
"code",
"collaboration",
"real-time"
],
"author": "CodeSync Team",
"license": "MIT",
"devDependencies": {
"electron": "^25.0.0",
"electron-builder": "^24.0.0",
"electron-packager": "^17.1.2"
},
"dependencies": {
"chokidar": "^3.5.3",
"electron-log": "^5.4.1",
"electron-updater": "^6.1.4",
"node-fetch": "^3.3.0",
"ws": "^8.13.0",
"diff": "^5.1.0",
"acorn": "^8.10.0",
"esprima": "^4.0.1",
"prettier": "^3.0.0",
"lodash": "^4.17.21",
"uuid": "^9.0.0"
},
"build": {
"appId": "com.codesync.app",
"productName": "CodeSync",
"directories": {
"output": "dist"
},
"files": [
"src/**/*",
"node_modules/**/*",
"package.json"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"sign": false,
"verifyUpdateCodeSignature": false
},
"publish": {
"provider": "github",
"owner": "votre-nom-utilisateur",
"repo": "sync-extension",
"releaseType": "release"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"allowElevation": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "CodeSync",
"uninstallDisplayName": "CodeSync - Synchronisation Temps Réel",
"license": "LICENSE.txt",
"deleteAppDataOnUninstall": false,
"runAfterFinish": true,
"menuCategory": "Développement",
"displayLanguageSelector": false,
"language": "1036"
},
"mac": false,
"linux": false,
"compression": "maximum",
"nodeGypRebuild": false,
"buildDependenciesFromSource": false,
"forceCodeSigning": false
}
}