-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·64 lines (64 loc) · 2.82 KB
/
package.json
File metadata and controls
executable file
·64 lines (64 loc) · 2.82 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
{
"name": "CWSAndroidNS",
"main": "app/src/ns/app.ts",
"version": "1.0.0",
"private": true,
"nativescript": {
"id": "org.u2re.cws.android"
},
"devDependencies": {},
"dependencies": {
"clipboardy": ">=5.3.1",
"copy-webpack-plugin": ">=14.0.0",
"nativescript": ">=9.0.5",
"serialize-javascript": ">=7.0.5",
"typescript": ">=6.0.0-beta",
"@awarns/phone-sensors": ">=1.2.2",
"@capacitor/android": ">=8.3.1",
"@nativescript/android": ">=9.0.2",
"@nativescript/contacts": ">=3.0.0",
"@nativescript/core": ">=9.0.18",
"@nativescript/secure-storage": ">=4.0.1",
"@nativescript/theme": ">=3.1.0",
"@nativescript/zip": ">=7.0.1",
"@nativescript/capacitor": ">=5.0.2",
"@nativescript/types": ">=9.0.0",
"@nativescript/types-android": ">=9.0.0",
"@nativescript/webpack": ">=5.0.33",
"@triniwiz/nativescript-socketio": ">=6.0.1",
"@valor/nativescript-websockets": ">=2.0.3",
"cbor-x": ">=1.6.4",
"json5": ">=2.2.3",
"nativescript-accelerometer": ">=3.0.0",
"nativescript-android-sensors": ">=2.1.0",
"nativescript-app-shortcuts": ">=3.0.0",
"nativescript-betterwebsockets": ">=1.0.0",
"nativescript-clipboard": ">=2.1.1",
"nativescript-coremotion": ">=0.1.7",
"ns-shortcuts": ">=1.0.1"
},
"scripts": {
"postinstall": "node -e \"try{const fs=require('fs');['tools/ns-vscode.sh','tools/with-android-env.sh','tools/build-android.sh'].forEach(f=>fs.chmodSync(f,0o755));}catch(e){}\"",
"clean": "bash ./tools/with-android-env.sh ns clean",
"prepare:android": "bash ./tools/with-android-env.sh ns prepare android",
"rebuild:android": "bash ./tools/with-android-env.sh ns clean && bash ./tools/with-android-env.sh ns prepare android",
"build": "bash ./tools/build-android.sh",
"build:android": "bash ./tools/build-android.sh",
"android": "bash ./tools/with-android-env.sh ns run android",
"android:device": "bash ./tools/with-android-env.sh ns run android --device 192.168.0.196:5555",
"preandroid:device": "bash ./tools/with-android-env.sh adb connect 192.168.0.196:5555",
"debug:android": "bash ./tools/with-android-env.sh ns debug android",
"debug:android:device": "bash ./tools/with-android-env.sh ns debug android --device 192.168.0.196:5555",
"predebug:android:device": "bash ./tools/with-android-env.sh adb connect 192.168.0.196:5555",
"adb:connect": "adb connect 192.168.0.196:5555",
"adb:devices": "adb devices -l",
"check:types": "tsc --noEmit -p tsconfig.json",
"start": "bash ./tools/with-android-env.sh ns run android",
"build:nativescript": "node --experimental-import-meta-resolve node_modules/.bin/build-nativescript",
"build:mobile": "npm-run-all build build:nativescript",
"dev:nativescript": "dev-nativescript"
},
"overrides": {
"tns-core-modules": "7.0.0-rc.32"
}
}