-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.48 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.48 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
84
85
86
87
88
89
90
91
92
{
"homepage": "./",
"name": "termlinkacess",
"description": "Termlink hack minigame from fallout",
"appId": "com-pfndesign-termlinkacess",
"version": "1.0.6",
"author": "pfndesign <pfndesigen@gmail.com>",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"dist:linux32": "electron-webpack && electron-builder --ia32 --linux ",
"dist:linux64": "electron-webpack && electron-builder --x64 --linux ",
"dist:linuxarm": "electron-webpack && electron-builder --arm64 --armv7l --linux"
},
"dependencies": {
"@expo/vector-icons": "^12.0.0",
"an-array-of-english-words": "^2.0.0",
"crypto-js": "3.1.9-1",
"expo": "~43.0.2",
"expo-av": "~10.1.3",
"expo-constants": "~12.1.3",
"expo-font": "~10.0.3",
"expo-keep-awake": "~10.0.0",
"expo-status-bar": "~1.1.0",
"expo-updates": "~0.10.15",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-native": "0.64.3",
"react-native-paper": "4.9.2",
"react-native-web": "0.17.1",
"string-similarity": "*"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@expo/electron-adapter": "^0.0.55",
"@expo/webpack-config": "^0.16.18",
"babel-loader": "^8.2.3",
"electron": "^17.1.0",
"electron-builder": "^22.14.13",
"electron-icon-maker": "^0.0.5",
"workbox-background-sync": "^6.1.5",
"workbox-broadcast-update": "^6.1.5",
"workbox-cacheable-response": "^6.1.5",
"workbox-core": "^6.1.5",
"workbox-expiration": "^6.1.5",
"workbox-google-analytics": "^6.1.5",
"workbox-navigation-preload": "^6.1.5",
"workbox-precaching": "^6.1.5",
"workbox-range-requests": "^6.1.5",
"workbox-routing": "^6.1.5",
"workbox-strategies": "^6.1.5",
"workbox-streams": "^6.1.5",
"workbox-webpack-plugin": "^6.1.5"
},
"private": true,
"build": {
"appId": "com-pfndesign-termlinkacess",
"icon": "./assets/icons/mac/icon.icns",
"linux": {
"target": [
"deb",
"rpm"
],
"category": "Game"
},
"extraMetadata": {
"main": "main.js"
},
"files": [
{
"from": "dist/main/",
"to": "./",
"filter": [
"**/*"
]
},
{
"from": "dist/renderer",
"to": "./",
"filter": [
"**/*"
]
},
"package.json",
"**/node_modules/**/*"
]
}
}