-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1015 Bytes
/
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
{
"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": "^8.1.0",
"lodash.debounce": "^4.0.8"
},
"devDependencies": {
"@electron-forge/cli": "^7.5.0",
"@electron-forge/maker-zip": "^7.5.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.5.0",
"@eslint/js": "^9.17.0",
"electron": "^33.2.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.13.0",
"prettier": "^3.2.5"
},
"build": {
"appId": "com.tu4mo.noter",
"mac": {
"category": "public.app-category.productivity"
}
}
}