-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.37 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
{
"name": "word-proximity",
"version": "1.1.0",
"author": "Arvind PJ <[email protected]>",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"android:apk:build": "yarn build && npx cap sync android && cd android && ./gradlew clean && ./gradlew assembleDebug && cd ..",
"android:aab:build": "yarn build && npx cap sync android && cd android && ./gradlew clean && ./gradlew bundleRelease && cd ..",
"android:generate:icons": "capacitor-assets generate --iconBackgroundColor '#242424' --iconBackgroundColorDark '#242424' --splashBackgroundColor '#242424' --splashBackgroundColorDark '#242424' --android && cp ./assets/logo.svg ./public/logo.svg"
},
"devDependencies": {
"@capacitor/cli": "^4.6.2",
"@sveltejs/vite-plugin-svelte": "^2.0.0",
"@tsconfig/svelte": "^3.0.0",
"autoprefixer": "^10.4.13",
"postcss": "^8.4.21",
"svelte": "^3.54.0",
"svelte-check": "^2.10.0",
"tailwindcss": "^3.2.4",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"vite": "^4.0.0"
},
"dependencies": {
"@capacitor/android": "^4.6.2",
"@capacitor/assets": "^2.0.4",
"@capacitor/core": "^4.6.2",
"@capacitor/preferences": "^4.0.2",
"@capacitor/toast": "^4.1.0",
"axios": "^1.3.2"
}
}