This repository has been archived by the owner on Sep 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
125 lines (125 loc) · 3.82 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
124
125
{
"name": "nfov",
"productName": "nfov",
"version": "1.3.1",
"description": "ASCII / ANSI art viewer for macOS powered by Electron",
"os": [
"darwin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nrlquaker/nfov.git"
},
"main": "src/main.ts",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "tslint --project tsconfig.json; markdownlint README.md"
},
"keywords": [
"nfo",
"diz",
"asc",
"ans",
"xb",
"pcb",
"bin",
"tnd",
"idf",
"adf",
"ascii-art",
"ansi-art",
"electron",
"ansilove",
"macos"
],
"author": "nrlquaker",
"license": "MIT",
"bugs": {
"url": "https://github.com/nrlquaker/nfov/issues"
},
"homepage": "https://github.com/nrlquaker/nfov",
"config": {
"forge": {
"make_targets": {
"darwin": [
"zip"
]
},
"electronPackagerConfig": {
"asar": true,
"packageManager": "npm",
"icon": "assets/icons/icon.icns",
"appCategoryType": "public.app-category.utilities",
"extendInfo": "assets/Info.plist",
"extraResource": [
"assets/icons/file_diz.icns",
"assets/icons/file_nfo.icns",
"assets/icons/file_asc.icns",
"assets/icons/file_txt.icns",
"assets/icons/file_ans.icns",
"assets/icons/file_cia.icns",
"assets/icons/file_ice.icns",
"assets/icons/file_xb.icns",
"assets/icons/file_pcb.icns",
"assets/icons/file_bin.icns",
"assets/icons/file_tnd.icns",
"assets/icons/file_idf.icns",
"assets/icons/file_adf.icns",
"assets/icons/file_pcx.icns",
"assets/icons/file_mem.icns",
"assets/icons/file_lgo.icns",
"assets/icons/file_sit.icns"
],
"ignore": [
".vscode",
"assets/icons",
"assets/Info.plist",
"screenshots",
"icons"
]
},
"github_repository": {
"owner": "nrlquaker",
"name": "nfov"
}
}
},
"dependencies": {
"anchorme": "^2.0.0",
"blob-to-buffer": "^1.2.7",
"dom-to-image": "^2.6.0",
"electron-compile": "^6.4.4",
"electron-devtools-installer": "^2.2.4",
"electron-settings": "^3.2.0",
"fs": "0.0.1-security",
"iconv-lite": "^0.4.24",
"path": "^0.12.7",
"pcx-js": "^1.1.0",
"react": "^16.8.6",
"react-color": "^2.17.2",
"react-desktop": "^0.3.9",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.8.4",
"sauce.js": "^1.0.3",
"tslib": "^1.9.1"
},
"devDependencies": {
"@types/blob-to-buffer": "^1.2.0",
"@types/electron-devtools-installer": "^2.2.0",
"@types/electron-settings": "^3.1.1",
"@types/react": "^16.8.14",
"@types/react-color": "^3.0.0",
"@types/react-dom": "^16.8.4",
"@types/reactcss": "^1.2.3",
"electron": "^1.8.4",
"electron-forge": "^5.2.4",
"electron-prebuilt-compile": "1.8.4",
"markdownlint-cli": "^0.15.0",
"prettier": "^1.17.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
}
}