-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.02 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.02 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
{
"name": "noteforge",
"version": "2.6.1",
"description": "Encrypted offline note-taking — a OneNote alternative that keeps your data local and protected.",
"main": "main.js",
"author": {
"name": "James Cupps"
},
"license": "MIT",
"homepage": "https://github.com/jamesccupps/NoteForge",
"repository": {
"type": "git",
"url": "https://github.com/jamesccupps/NoteForge.git"
},
"scripts": {
"start": "electron .",
"build:jsx": "babel app.jsx --out-file app.js --presets=@babel/preset-react",
"predist": "npm run build:jsx",
"dist": "electron-builder --win"
},
"build": {
"appId": "com.jamescupps.noteforge",
"productName": "NoteForge",
"copyright": "Copyright © 2026 James Cupps",
"forceCodeSigning": false,
"directories": {
"output": "dist"
},
"files": [
"main.js",
"preload.js",
"index.html",
"styles.css",
"app.js",
"lib/**/*",
"assets/**/*"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "portable",
"arch": [
"x64"
]
}
],
"icon": "assets/icon.ico"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "assets/icon.ico",
"uninstallerIcon": "assets/icon.ico",
"installerHeaderIcon": "assets/icon.ico",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "NoteForge"
},
"portable": {
"artifactName": "NoteForge-${version}-portable.exe"
},
"publish": {
"provider": "github",
"owner": "jamesccupps",
"repo": "NoteForge",
"releaseType": "release"
}
},
"dependencies": {
"electron-updater": "^6.3.0"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/preset-react": "^7.28.5",
"electron": "^33.0.0",
"electron-builder": "^25.0.0"
}
}