-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.69 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.69 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
{
"name": "birb-hunter",
"version": "1.0.0",
"description": "Birb Hunter is a mobile game developed using the Apache Cordova framework and PixiJS.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "make clean",
"webpack": "webpack",
"build": "npm run webpack && cordova build",
"build:android": "cordova build android",
"build:ios": "cordova build ios",
"build:electron": "npm run webpack && cordova build electron",
"build:electron-mac": "npm run webpack && cordova build electron --mac",
"build:electron-win": "npm run webpack && cordova build electron --windows",
"build:electron-linux": "npm run webpack && cordova build electron --linux",
"build:browser": "npm run webpack",
"run:browser": "npx http-server www -o",
"run:electron": "cordova run electron",
"serve": "npm run run:browser"
},
"keywords": [
"cordova",
"pixijs",
"game",
"mobile"
],
"author": "PhoneGap Team",
"license": "ISC",
"devDependencies": {
"copy-webpack-plugin": "^14.0.0",
"cordova": "^12.0.0",
"cordova-browser": "^7.0.0",
"cordova-electron": "^4.0.0",
"cordova-plugin-battery-status": "^2.0.3",
"cordova-plugin-camera": "^8.0.0",
"cordova-plugin-device": "^3.0.0",
"cordova-plugin-dialogs": "^2.0.2",
"cordova-plugin-file": "^8.1.3",
"cordova-plugin-fullscreen": "^1.3.0",
"cordova-plugin-globalization": "^1.11.0",
"cordova-plugin-inappbrowser": "^6.0.0",
"cordova-plugin-media-capture": "^6.0.0",
"cordova-plugin-network-information": "^3.0.0",
"cordova-plugin-screen-orientation": "^3.0.4",
"cordova-plugin-statusbar": "^4.0.0",
"cordova-plugin-vibration": "^3.1.1",
"html-webpack-plugin": "^5.6.6",
"jasmine-core": "^4.0.0",
"ts-loader": "^9.0.0",
"typescript": "^5.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^5.0.0"
},
"dependencies": {
"@pixi/sound": "^5.0.0",
"inversify": "^6.0.1",
"pixi.js": "^7.0.0",
"random": "^3.0.6",
"reflect-metadata": "^0.2.2"
},
"cordova": {
"plugins": {
"cordova-plugin-battery-status": {},
"cordova-plugin-camera": {},
"cordova-plugin-device": {},
"cordova-plugin-dialogs": {},
"cordova-plugin-file": {},
"cordova-plugin-fullscreen": {},
"cordova-plugin-globalization": {},
"cordova-plugin-inappbrowser": {},
"cordova-plugin-media-capture": {},
"cordova-plugin-network-information": {},
"cordova-plugin-screen-orientation": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-vibration": {}
},
"platforms": [
"android",
"ios",
"browser",
"electron"
]
}
}