-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 8.27 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
{
"description": "Conty",
"license": "MIT",
"readme": "NativeScript Application",
"author": "Martin Guillon<[email protected]>",
"repository": "https://github.com/Akylas/conty",
"main": "app/main",
"bugs": {
"url": "https://github.com/Akylas/conty/issues"
},
"scripts": {
"createBase64Key": "openssl base64 < $KEYSTORE_PATH | tr -d '\n' | tee base64.txt",
"postinstall": "npm run setup",
"prepare": "ts-patch install -s",
"prepare.ios.sentry": "NS_SENTRY=1 PLAY_STORE_BUILD=1 ns prepare ios --release --env.adhoc_sentry",
"run.ios.production": "NS_LOGGING=1 PLAY_STORE_BUILD=1 ns run ios --release --env.production --env.adhoc",
"run.ios.production.sentry": "NS_SENTRY=1 PLAY_STORE_BUILD=1 ns run ios --release --env.production --env.adhoc_sentry",
"sentry-set-commits": "sentry-cli releases set-commits --auto --ignore-missing",
"run.android.production": "NS_LOGGING=1 cross-var ns run android --release --key-store-path $KEYSTORE_PATH --key-store-password $KEYSTORE_PASSWORD --key-store-alias $KEYSTORE_ALIAS --key-store-alias-password $KEYSTORE_ALIAS_PASSWORD --env.adhoc --env.sentry=0 --env.sourceMap=0 --env.noconsole=0 --env.devlog",
"run.android.production.sentry": "NS_SENTRY=1 cross-var ns run android --release --key-store-path $KEYSTORE_PATH --key-store-password $KEYSTORE_PASSWORD --key-store-alias $KEYSTORE_ALIAS --key-store-alias-password $KEYSTORE_ALIAS_PASSWORD --env.adhoc_sentry --env.sentryUpload=0 --env.sourceMap=0 --env.devlog --gradleArgs=-PsentryEnabled",
"run.android.timeline": "NS_LOGGING=1 NS_TIMELINE=1 cross-var ns run android --release --key-store-path $KEYSTORE_PATH --key-store-password $KEYSTORE_PASSWORD --key-store-alias $KEYSTORE_ALIAS --key-store-alias-password $KEYSTORE_ALIAS_PASSWORD --env.timeline",
"build.android.production": "cross-var ns build android --release --clean --key-store-path $KEYSTORE_PATH --key-store-password $KEYSTORE_PASSWORD --key-store-alias $KEYSTORE_ALIAS --key-store-alias-password $KEYSTORE_ALIAS_PASSWORD --env.adhoc --env.sentry=0 --env.sourceMap=0 --env.report",
"build.android.production.playstore": "PLAY_STORE_BUILD=1 npm run build.android.production -- --aab",
"build.android.production.playstore.sentry": "NS_SENTRY=1 PLAY_STORE_BUILD=1 cross-var ns build android --release --clean --key-store-path $KEYSTORE_PATH --key-store-password $KEYSTORE_PASSWORD --key-store-alias $KEYSTORE_ALIAS --key-store-alias-password $KEYSTORE_ALIAS_PASSWORD --env.adhoc_sentry --env.report --aab --gradleArgs=-PsentryEnabled",
"build.android.production.fdroid": "cross-var ns build android --release --clean --key-store-path $KEYSTORE_PATH --key-store-password $KEYSTORE_PASSWORD --key-store-alias $KEYSTORE_ALIAS --key-store-alias-password $KEYSTORE_ALIAS_PASSWORD --env.adhoc --env.playStoreBuild=0 --env.report --gradleArgs=-PsplitEnabled --gradleArgs=-PabiFilters=arm64-v8a,armeabi-v7a",
"build.android.production.fdroid.sentry": "NS_SENTRY=1 npm run build.android.production.fdroid -- --env.adhoc_sentry --gradleArgs=-PsentryEnabled",
"build.android.debug.sentry": "NS_SENTRY=1 ns build android --env.adhoc_sentry --env.production=0 --gradleArgs=-PsplitEnabled --gradleArgs=-PabiFilters=arm64-v8a,armeabi-v7a --gradleArgs=-PsentryEnabled",
"prepare.android.benchmark": "cross-var ns prepare android --release --clean --key-store-path $KEYSTORE_PATH --key-store-password $KEYSTORE_PASSWORD --key-store-alias $KEYSTORE_ALIAS --key-store-alias-password $KEYSTORE_ALIAS_PASSWORD --env.adhoc",
"build.android.baselineprofile": "npm run prepare.android.benchmark ; ./$APP_BUILD_PATH/android/gradlew -p ./$APP_BUILD_PATH/android :benchmark:pixel2Api31BenchmarkAndroidTest -Pandroid.testoptions.manageddevices.emulator.gpu=\"swiftshader_indirect\" -Pandroid.testInstrumentationRunnerArguments.androidx.benchmark.enabledRules=BaselineProfile -Dorg.gradle.workers.max=4 --stacktrace; mv -f ./$APP_BUILD_PATH/android/benchmark/build/outputs/managed_device_android_test_additional_output/pixel2Api31/BaselineProfileGenerator_startup-baseline-prof.txt $APP_RESOURCES/Android/src/main/baseline-prof.txt",
"svelte-check": "svelte-check --compiler-warnings 'a11y-no-onchange:ignore,a11y-label-has-associated-control:ignore,a11y-autofocus:ignore,illegal-attribute-character:ignore'",
"sync": "node ./tools/sync.mjs",
"update": "node ./tools/update.mjs",
"setup": "npm run submodules && npm run patchpackage",
"submodules": "git submodule update --init",
"patchpackage": "./node_modules/.bin/patch-package",
"set_version": "node tools/scripts/set-version.mjs set-version",
"prepare.ios": "PLAY_STORE_BUILD=1 ns prepare ios --release --env.adhoc"
},
"dependencies": {
"@akylas/kiss-orm": "2.1.11",
"@akylas/nativescript": "8.8.9",
"@akylas/nativescript-app-tools": "file:tools",
"@akylas/nativescript-app-utils": "2.2.0",
"@akylas/nativescript-inappbrowser": "3.1.8",
"@akylas/non-playstore": "portal:plugin_non_playstore",
"@mdi/font": "7.4.47",
"@nativescript-community/additween": "4.0.9",
"@nativescript-community/arraybuffers": "1.1.5",
"@nativescript-community/audio": "6.4.11",
"@nativescript-community/css-theme": "1.2.14",
"@nativescript-community/extendedinfo": "1.3.1",
"@nativescript-community/gesturehandler": "2.0.32",
"@nativescript-community/https": "4.1.19",
"@nativescript-community/l": "4.3.10",
"@nativescript-community/licenses": "2.0.9",
"@nativescript-community/observable": "2.0.11",
"@nativescript-community/perms": "2.3.6",
"@nativescript-community/preferences": "1.3.2",
"@nativescript-community/sentry": "4.6.38",
"@nativescript-community/sqlite": "3.5.1",
"@nativescript-community/systemui": "1.1.23",
"@nativescript-community/text": "1.6.7",
"@nativescript-community/ui-canvas": "4.6.36",
"@nativescript-community/ui-canvaslabel": "1.2.39",
"@nativescript-community/ui-checkbox": "2.0.12",
"@nativescript-community/ui-collectionview": "6.0.2",
"@nativescript-community/ui-collectionview-swipemenu": "6.0.2",
"@nativescript-community/ui-document-picker": "1.1.26",
"@nativescript-community/ui-drawer": "0.1.28",
"@nativescript-community/ui-image": "4.5.4",
"@nativescript-community/ui-image-colorfilter": "^4.5.4",
"@nativescript-community/ui-label": "1.3.32",
"@nativescript-community/ui-material-activityindicator": "7.2.69",
"@nativescript-community/ui-material-bottomsheet": "7.2.69",
"@nativescript-community/ui-material-button": "7.2.69",
"@nativescript-community/ui-material-cardview": "7.2.69",
"@nativescript-community/ui-material-core": "7.2.69",
"@nativescript-community/ui-material-dialogs": "7.2.69",
"@nativescript-community/ui-material-progress": "7.2.69",
"@nativescript-community/ui-material-slider": "7.2.69",
"@nativescript-community/ui-material-snackbar": "7.2.69",
"@nativescript-community/ui-material-switch": "7.2.69",
"@nativescript-community/ui-material-textfield": "7.2.69",
"@nativescript-community/ui-material-textview": "7.2.69",
"@nativescript-community/ui-pager": "14.1.29",
"@nativescript-community/ui-persistent-bottomsheet": "0.0.29",
"@nativescript-community/ui-popover": "0.1.20",
"@nativescript-community/ui-share-file": "1.3.3",
"@nativescript-community/ui-webview": "1.5.2",
"@nativescript/email": "^2.1.0",
"@nativescript/zip": "^6.0.0",
"dayjs": "1.11.13",
"filesize": "10.1.6",
"make-error": "1.3.6",
"svelte-native": "1.0.29"
},
"devDependencies": {
"@akylas/nativescript-android-runtime": "8.8.5",
"@akylas/nativescript-ios-runtime": "8.8.2",
"@akylas/nativescript-webpack": "5.0.22",
"@nativescript/core": "8.8.6",
"merge-properties-files": "^1.1.6",
"mini-css-extract-plugin": "^2.9.2",
"svelte-loader": "3.2.4"
},
"resolutions": {
"@akylas/nativescript": "portal:../NativeScript/dist/packages/core"
},
"packageManager": "[email protected]"
}