This repository has been archived by the owner on Jul 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
105 lines (105 loc) · 2.84 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
{
"name": "fontlet",
"description": "A package manager for fonts bringing latest and greatest libre fonts to your desktop ",
"version": "0.0.29-alpha",
"author": "Friends of Akuru <[email protected]>",
"license": "GPL-3.0",
"homepage": "https://github.com/fontlet/fontlet-explorer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/fontlet/fontlet-explorer.git"
},
"main": "build/electron.js",
"scripts": {
"lint": "eslint ./src",
"prettier": "prettier --write ./src/**/*.js ./src/**/*.css ./src/**/*.json",
"start": "concurrently \"cross-env BROWSER=none react-scripts start\" \"wait-on http://localhost:3000 && electron .\"",
"build": "react-scripts build",
"dev": "npm run build && npm start",
"pack": "electron-builder build —em.main=build/electron.js",
"electron-pack": "build —em.main=build/electron.js",
"dist": "npm run build && electron-builder build --x64 --macos --win --linux --c.extraMetadata.main=build/electron.js -p always"
},
"dependencies": {
"@blueprintjs/core": "^3.4.0",
"about-window": "^1.12.1",
"axios": "^0.18.0",
"child_process": "^1.0.2",
"cross-env": "^5.1.3",
"electron-is-dev": "^0.3.0",
"electron-log": "^2.2.14",
"electron-updater": "^3.1.2",
"lodash": "^4.17.11",
"nedb": "^1.8.0",
"nedb-promises": "^3.0.2",
"node-notifier": "^5.2.1",
"os": "^0.1.1",
"path": "^0.12.7",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-svg": "^6.0.5",
"request": "^2.88.0",
"styled-components": "^3.4.5",
"sudo-prompt": "^8.2.0",
"update-electron-app": "^1.3.0"
},
"devDependencies": {
"concurrently": "3.5.1",
"electron": "^2.0.7",
"electron-builder": "^20.28.3",
"eslint": "^4.19.1 || ^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.0",
"prettier": "^1.14.2",
"prettier-eslint": "^8.8.2",
"react-scripts": "^1.1.4",
"wait-on": "^2.1.0"
},
"build": {
"productName": "Fontlet",
"appId": "org.fontlet.app",
"files": [
"build/**/*",
"node_modules/**/*",
"resources/**/*",
"about/**/*",
"package.json"
],
"directories": {
"buildResources": "assets"
},
"extraFiles": [
"src/lib/**",
"src/resources/**"
],
"publish": {
"provider": "github",
"owner": "fontlet",
"repo": "fontlet-explorer"
},
"mac": {
"target": [
"zip",
"dmg"
]
},
"win": {
"target": [
"nsis",
"zip"
]
},
"linux": {
"target": [
"deb",
"AppImage",
"zip"
],
"category": "Development"
}
}
}