This repository has been archived by the owner on Mar 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
128 lines (128 loc) · 4.79 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
126
127
128
{
"name": "picoDeploy",
"description": "Deploy Pico-8 Games Anywhere and Everywhere!",
"version": "0.0.1",
"author": "Aaron Turner",
"homepage": "https://aaronthedev.com",
"private": false,
"main": "main.js",
"scripts": {
"clean": "ionic-app-scripts clean",
"lint": "ionic-app-scripts lint",
"cart": "rm -rf www/cart && mkdirp www/cart && cp -r cart/* www/cart",
"config": "node config/copyConfig.js",
"build": "npm run ionic:build",
"serve": "npm run ionic:serve",
"ionic:build": "npm run config && npm run cart && ionic-app-scripts build",
"ionic:serve": "npm run config && npm run cart && ionic-app-scripts serve",
"android:run": "export DEV=\"true\" && export MOBILE=\"true\" && npm run config && npm run cart && ionic cordova run android --prod",
"android:serve": "export DEV=\"true\" && export MOBILE=\"true\" && npm run config && npm run cart && ionic cordova run android --prod --livereload --consolelogs",
"android:build": "export DEV=\"false\" && export MOBILE=\"true\" && npm run config && npm run cart && ionic cordova build android --prod --release",
"android:deploy": "npm run android:build && ./ionic-android-deploy.sh YOUR_KEYSTORE_HERE KEYSTORE_PASSWORD_HERE dist/android pico-deploy",
"electron:serve": "export DEV=\"true\" && export MOBILE=\"false\" && npm run ionic:build --prod && ./node_modules/.bin/electron .",
"electron:serve:nobuild": "export DEV=\"true\" && export MOBILE=\"false\" && npm run config && npm run cart && ./node_modules/.bin/electron .",
"electron:build": "export DEV=\"false\" && export MOBILE=\"false\" && npm run ionic:build --prod && electron-builder",
"electron:deploy": "export DEV=\"false\" && export MOBILE=\"false\" && npm run ionic:build --prod && electron-builder -mwl --x64 --ia32"
},
"build": {
"appId": "com.example.picoDeploy",
"productName": "picoDeploy",
"directories": {
"buildResources": "resources"
},
"files": [
"www/**/*",
"picoDeployConfig.json",
"main.js",
"!**/node_modules/**/*",
"!.editorconfig",
"!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,__pycache__,thumbs.db,.gitignore,.gitattributes,.flowconfig,.yarn-metadata.json,.idea,.vs,appveyor.yml,.travis.yml,circle.yml,npm-debug.log,.nyc_output,yarn.lock,.yarn-integrity}",
"!**/._*",
"!**/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}"
],
"extraResources": [],
"mac": {
"category": "public.app-category.games",
"target": [
"dmg",
"zip"
]
},
"win": {
"target": [
"nsis",
"portable"
]
},
"linux": {
"target": [
"AppImage",
"zip"
]
}
},
"dependencies": {
"@angular/common": "4.1.3",
"@angular/compiler": "4.1.3",
"@angular/compiler-cli": "4.1.3",
"@angular/core": "4.1.3",
"@angular/forms": "4.1.3",
"@angular/http": "4.1.3",
"@angular/platform-browser": "4.1.3",
"@angular/platform-browser-dynamic": "4.1.3",
"@ionic-native/core": "3.12.1",
"@ionic-native/screen-orientation": "^4.2.1",
"@ionic-native/splash-screen": "3.12.1",
"@ionic-native/status-bar": "3.12.1",
"@ionic/storage": "^2.0.1",
"@types/node": "^8.5.2",
"angular2-expandable-list": "^0.5.0",
"buffer": "^5.0.8",
"cordova-plugin-console": "^1.0.5",
"cordova-plugin-crosswalk-webview": "^2.3.0",
"cordova-plugin-device": "^1.1.4",
"cordova-plugin-screen-orientation": "^2.0.1",
"cordova-plugin-splashscreen": "^4.0.3",
"cordova-plugin-statusbar": "^2.2.2",
"cordova-plugin-whitelist": "^1.3.1",
"cordova-sqlite-storage": "^2.0.4",
"es6-promise-plugin": "git+https://github.com/vstirbu/PromisesPlugin.git",
"idb": "^2.0.4",
"ionic-angular": "3.6.1",
"ionic-plugin-keyboard": "^2.2.1",
"ionicons": "3.0.0",
"ngx-color-picker": "^4.3.3",
"rxjs": "5.4.0",
"sass-media-queries": "^1.0.3",
"sass-theme-defaults": "^1.0.2",
"sw-toolbox": "3.6.0",
"zone.js": "0.8.12"
},
"devDependencies": {
"@ionic/app-scripts": "^3.2.4",
"electron": "^7.2.4",
"electron-builder": "^19.50.0",
"mkdirp": "^0.5.1",
"typescript": "2.3.4"
},
"cordova": {
"plugins": {
"cordova-plugin-console": {},
"cordova-plugin-device": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-whitelist": {},
"ionic-plugin-keyboard": {},
"cordova-plugin-screen-orientation": {},
"cordova-sqlite-storage": {},
"cordova-plugin-crosswalk-webview": {
"XWALK_VERSION": "23+",
"XWALK_LITEVERSION": "xwalk_core_library_canary:17+",
"XWALK_COMMANDLINE": "--disable-pull-to-refresh-effect",
"XWALK_MODE": "embedded",
"XWALK_MULTIPLEAPK": "true"
}
},
"platforms": []
}
}