-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 941 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
40
41
42
43
44
{
"name": "unime",
"version": "0.3.3",
"description": "Unicode Input",
"main": "src/main.js",
"type": "commonjs",
"scripts": {
"start": "electron .",
"app:dir": "electron-builder --dir",
"app:dist": "electron-builder",
"lint": "echo \"No linting configured\""
},
"repository": "https://github.com/kyungminlee/unime",
"keywords": [
"unicode"
],
"author": "Kyungmin Lee",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^19.0.0",
"electron-builder": "^23.3.1"
},
"dependencies": {
"fuzzy-search": "^3.2.1",
"lru-cache": "^7.13.1"
},
"build": {
"appId": "com.unime.app",
"win": {
"target": ["nsis", "portable"]
},
"linux": {
"target": ["AppImage", "tar.xz"]
},
"mac": {
"category": "public.app-category.utilities",
"target": [ "default" ],
"hardenedRuntime": true
}
},
"files": [
"assets/**/*"
]
}