-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.77 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.77 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
{
"name": "bazaar",
"version": "1.4.0",
"description": "Indian Stock Market Dashboard with Light Theme",
"main": "main.js",
"scripts": {
"start": "electron . --no-sandbox",
"dev": "NODE_ENV=development electron . --no-sandbox",
"build": "electron-builder",
"clean": "rm -rf dist",
"build:win": "npm run clean && electron-builder --win",
"build:mac": "npm run clean && electron-builder --mac",
"build:linux": "npm run clean && electron-builder --linux"
},
"keywords": [
"stock",
"market",
"indian",
"nifty",
"sensex",
"trading"
],
"author": {
"name": "Akul Srivastava",
"email": "akulsr0@gmail.com"
},
"license": "MIT",
"devDependencies": {
"electron": "^28.3.3",
"electron-builder": "^24.13.3"
},
"dependencies": {
"stock-nse-india": "^1.2.2",
"yahoo-finance2": "^3.10.0"
},
"build": {
"appId": "com.bazaar.stockmarket",
"productName": "Bazaar",
"directories": {
"output": "dist",
"buildResources": "assets"
},
"files": [
"main.js",
"preload.js",
"src/**/*",
"package.json"
],
"win": {
"target": [
"nsis",
"portable"
],
"icon": "assets/icon.ico"
},
"mac": {
"target": [
"dmg",
"zip"
],
"icon": "assets/icon.icns",
"category": "public.app-category.finance",
"identity": null,
"hardenedRuntime": true,
"gatekeeperAssess": false
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "assets/icon.png",
"category": "Office;Finance"
},
"publish": {
"provider": "github",
"owner": "akulsr0",
"repo": "bazaar"
},
"asar": true,
"compression": "maximum"
}
}