-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.47 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
{
"name": "fontextractor",
"version": "1.0.0",
"description": "Figma project font management on local computer and extract for shairng",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder -m"
},
"build": {
"appId": "com.MotrBottle.figmafontextractor",
"productName": "Figma Font Extract Helper",
"files": [
"**/*",
"GetFont.py",
"install_dependencies.cmd",
"check_and_install_fonttools.py"
],
"extraResources": [
{
"from": "./GetFont.py",
"to": "GetFont.py"
},
{
"from": "./install_dependencies.cmd",
"to": "install_dependencies.cmd"
},
{
"from": "./check_and_install_fonttools.py",
"to": "check_and_install_fonttools.py"
},
{
"from": "./python",
"to": "python",
"filter": ["**/*"]
}
],
"win": {
"target": [
"portable"
],
"icon": "icon.ico"
},
"mac": {
"target": [
"dmg"
],
"icon": "icon.icns"
},
"dmg": {
"sign": false
},
"directories": {
"output": "release-builds"
}
},
"keywords": [],
"author": "MotorBottle",
"license": "MIT",
"devDependencies": {
"electron": "^30.0.1",
"electron-builder": "^24.13.3"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.19.2",
"fontkit": "^2.0.2",
"opentype.js": "^1.3.4"
}
}