forked from Acode-Foundation/Acode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.97 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
{
"name": "com.foxdebug.acode",
"displayName": "Acode",
"version": "1.2.147",
"description": "Acode is a code editor for android",
"main": "index.js",
"scripts": {
"lang": "node ./utils/lang.js",
"config-build": "node ./utils/config.js",
"build": "webpack",
"build-run-free": "yarn config-build d free && webpack && cordova run android",
"build-run": "yarn config-build d && webpack && cordova run android",
"build-run-release": "yarn config-build p && webpack && cordova run android --release",
"build-run-release-free": "yarn config-build p free && webpack && cordova run android --release",
"start": "yarn build-run",
"start-release": "yarn build-run-release",
"start-release-free": "yarn build-run-release-free",
"start-free": "yarn build-run-free",
"build-release-free": "yarn config-build p free && webpack && cordova build android --release",
"build-release": "yarn config-build p && webpack && cordova build android --release",
"test": "jest",
"clean": "cordova platform rm android --save && cordova platform add android --save"
},
"keywords": [
"ecosystem:cordova"
],
"author": "Foxdebug (Ajit Kumar)",
"license": "MIT",
"cordova": {
"plugins": {
"cordova-clipboard": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-vibration": {},
"cordova-plugin-navigationbar-color": {},
"cordova-plugin-file": {},
"cordova-plugin-buildinfo": {},
"cordova-plugin-device": {},
"cordova-plugin-webserver": {},
"cordova-plugin-whitelist": {},
"cordova-plugin-ftp": {},
"cordova-plugin-sftp": {},
"cordova-plugin-intent": {},
"cordova-plugin-sdcard": {},
"cordova-plugin-inappbrowser": {},
"cordova-plugin-system": {}
},
"platforms": [
"android"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/deadlyjack/acode.git"
},
"bugs": {
"url": "https://github.com/deadlyjack/acode/issues"
},
"homepage": "https://github.com/deadlyjack/acode#readme",
"browserslist": [
"> 50%",
"last 2 versions"
],
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@types/ace": "^0.0.47",
"@types/url-parse": "^1.4.4",
"autoprefixer": "^10.2.6",
"babel-loader": "^8.2.2",
"cordova-clipboard": "^1.3.0",
"cordova-plugin-buildinfo": "^4.0.0",
"cordova-plugin-device": "^2.0.3",
"cordova-plugin-file": "^6.0.2",
"cordova-plugin-ftp": "file:src/plugins/cordova-plugin-ftp",
"cordova-plugin-inappbrowser": "file:src/plugins/cordova-plugin-inappbrowser",
"cordova-plugin-intent": "file:src/plugins/cordova-plugin-intent",
"cordova-plugin-navigationbar-color": "^0.1.0",
"cordova-plugin-sdcard": "file:plugins/cordova-plugin-sdcard",
"cordova-plugin-sftp": "file:src/plugins/cordova-plugin-sftp",
"cordova-plugin-statusbar": "^2.4.3",
"cordova-plugin-system": "file:src/plugins/cordova-plugin-system",
"cordova-plugin-vibration": "^3.1.1",
"cordova-plugin-webserver": "file:src/plugins/cordova-plugin-webserver",
"cordova-plugin-whitelist": "^1.3.5",
"css-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.1.0",
"node-sass": "^6.0.0",
"path-browserify": "^1.0.1",
"postcss-loader": "^6.1.1",
"raw-loader": "^4.0.2",
"sass-loader": "^12.1.0",
"style-loader": "^3.1.0",
"webpack": "^5.38.0",
"webpack-cli": "^4.7.0"
},
"dependencies": {
"@babel/core": "^7.14.3",
"@deadlyjack/ajax": "^1.0.9",
"autosize": "^5.0.0",
"axios": "^0.21.1",
"cordova-android": "9.1.0",
"core-js": "^3.13.0",
"crypto": "^1.0.1",
"crypto-js": "^4.0.0",
"filesize": "^7.0.0",
"html-tag-js": "^1.0.2",
"irid": "^2.0.2",
"marked": "^2.0.6",
"mime-types": "^2.1.30",
"mustache": "^4.2.0",
"url-parse": "^1.5.3",
"utf8": "^3.0.0",
"vanilla-picker": "^2.11.2",
"yargs": "^17.0.1"
},
"resolutions": {
"dummy": "^0.1.5"
}
}