-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1008 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1008 Bytes
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
{
"name": "noter",
"version": "1.0.0",
"description": "A minimal note app for Mac's menu bar",
"main": "app/main.js",
"private": true,
"scripts": {
"format": "prettier --write '**/*.{css,js}'",
"lint": "eslint .",
"make": "electron-forge make",
"package": "electron-forge package",
"start": "electron-forge start"
},
"type": "module",
"repository": "https://github.com/tu4mo/noter",
"author": "tu4mo",
"license": "ISC",
"dependencies": {
"electron-store": "11.0.2",
"lodash.debounce": "4.0.8"
},
"devDependencies": {
"@electron-forge/cli": "7.11.1",
"@electron-forge/maker-zip": "7.11.1",
"@electron-forge/plugin-auto-unpack-natives": "7.11.1",
"@eslint/js": "10.0.1",
"electron": "41.1.0",
"eslint": "10.1.0",
"eslint-config-prettier": "10.1.8",
"globals": "17.4.0",
"prettier": "3.8.1"
},
"build": {
"appId": "com.tu4mo.noter",
"mac": {
"category": "public.app-category.productivity"
}
}
}