-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.43 KB
/
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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "sayad-ganj",
"version": "0.1.7",
"description": "Balochi Dictionary",
"private": true,
"main": "public/electron.js",
"homepage": "./",
"author": {
"name": "Umair Ayub",
"email": "[email protected]"
},
"dependencies": {
"@headlessui/react": "^1.7.2",
"classnames": "^2.3.2",
"electron-is-dev": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"react-simple-keyboard": "^3.4.229",
"sqlite3": "^5.0.11"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"rebuild-sqlite3": "electron-rebuild -f -w sqlite3",
"postinstall": "electron-builder install-app-deps",
"electron:start": "concurrently -k \"cross-env BROWSER=none npm start\" \"wait-on http://localhost:3000 && electron .\"",
"electron:package:mac": "npm run build && electron-builder -m -c.extraMetadata.main=build/electron.js",
"electron:package:win": "npm run build && electron-builder -w -c.extraMetadata.main=build/electron.js --publish never",
"electron:package:linux": "npm run build && electron-builder -l -c.extraMetadata.main=build/electron.js",
"deploy": "npm run build && electron-builder -w -c.extraMetadata.main=build/electron.js --publish always"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
"last 1 electron version",
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 electron version",
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"autoprefixer": "^10.4.8",
"concurrently": "^7.3.0",
"cross-env": "^7.0.3",
"electron": "^20.0.2",
"electron-builder": "^23.3.3",
"postcss": "^8.4.16",
"tailwindcss": "^3.1.8",
"wait-on": "^6.0.1"
},
"build": {
"productName": "Sayad Ganj",
"executableName": "Sayad Ganj",
"appId": "codes.umair.sayadganj",
"copyright": "Copyright © 2023 ${author}",
"artifactName": "SayadGanj-${version}-${os}-${arch}.${ext}",
"files": [
"build/**/*",
"node_modules/**/*"
],
"win": {
"target": [
"nsis"
],
"icon": "./icons/icon.ico",
"artifactName": "sayadganj-v${version}-win.exe"
},
"nsis": {
"oneClick": false,
"installerIcon": "./icons/icon.ico",
"uninstallerIcon": "./icons/icon.ico",
"license": "license",
"allowToChangeInstallationDirectory": true
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "public/logo.png",
"synopsis": "First Balochi Desktop Dictionary",
"description": "Explore the Balochi language with Sayad Ganj, the inaugural desktop dictionary.",
"category": "Education"
},
"directories": {
"buildResources": "build"
},
"extraResources": [
{
"from": "./db/data.db",
"to": "db/data.db"
}
],
"publish": {
"provider": "github",
"owner": "umairayub79",
"repo": "SayadGanj-Desktop"
}
},
"repository": {
"type": "git",
"url": "https://github.com/umairayub79/SayadGanj-Desktop"
},
"bugs": {
"url": "https://github.com/umairayub79SayadGanj-Desktop/issues"
}
}