@edgedev/create-edge-app 1.0.51 → 1.0.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.vscode/settings.json +8 -2
- package/app.vue +1 -1
- package/package.json +63 -63
package/.vscode/settings.json
CHANGED
|
@@ -3,12 +3,18 @@
|
|
|
3
3
|
"*.json": "json"
|
|
4
4
|
},
|
|
5
5
|
"[json]": {
|
|
6
|
-
"editor.formatOnSave": true
|
|
6
|
+
"editor.formatOnSave": true
|
|
7
7
|
},
|
|
8
8
|
"editor.formatOnSave": false,
|
|
9
9
|
"vetur.validation.template": false,
|
|
10
10
|
"editor.codeActionsOnSave": {
|
|
11
11
|
"source.fixAll.eslint": "explicit"
|
|
12
12
|
},
|
|
13
|
+
"editor.formatOnSaveMode": "modifications",
|
|
14
|
+
"editor.trimFinalNewlines": false,
|
|
15
|
+
"vue.features.codeActions": false,
|
|
16
|
+
"editor.tabSize": 2,
|
|
17
|
+
"editor.insertSpaces": true,
|
|
18
|
+
"editor.detectIndentation": false,
|
|
13
19
|
"vue3snippets.enable-compile-vue-file-on-did-save-code": false
|
|
14
|
-
}
|
|
20
|
+
}
|
package/app.vue
CHANGED
|
@@ -145,7 +145,7 @@ const menuItems = [
|
|
|
145
145
|
<SidebarTrigger />
|
|
146
146
|
</div>
|
|
147
147
|
<div>
|
|
148
|
-
<edge-user-menu :title="orgName" button-class="w-8 h-8
|
|
148
|
+
<edge-user-menu :title="orgName" button-class="w-8 h-8" icon-class="w-6 h-6" />
|
|
149
149
|
</div>
|
|
150
150
|
</div>
|
|
151
151
|
<NuxtPage keepalive />
|
package/package.json
CHANGED
|
@@ -1,64 +1,64 @@
|
|
|
1
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
|
-
}
|
|
2
|
+
"name": "@edgedev/create-edge-app",
|
|
3
|
+
"version": "1.0.53",
|
|
4
|
+
"description": "Create Edge Starter App",
|
|
5
|
+
"bin": {
|
|
6
|
+
"create-edge-app": "./bin/cli.js"
|
|
7
|
+
},
|
|
8
|
+
"scripts": {
|
|
9
|
+
"build": "nuxt build",
|
|
10
|
+
"dev": "nuxt dev --host --port=3000",
|
|
11
|
+
"emulator": "nuxt dev --dotenv .env.dev --host --port=3000",
|
|
12
|
+
"build-emulator": "nuxt generate --dotenv .env.dev",
|
|
13
|
+
"generate": "nuxt generate",
|
|
14
|
+
"preview": "nuxt preview",
|
|
15
|
+
"postinstall": "nuxt prepare"
|
|
16
|
+
},
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"@capacitor/android": "5.4.1",
|
|
19
|
+
"@capacitor/app": "5.0.6",
|
|
20
|
+
"@capacitor/core": "5.4.1",
|
|
21
|
+
"@capacitor/ios": "5.4.1",
|
|
22
|
+
"@capacitor/push-notifications": "5.1.0",
|
|
23
|
+
"@chenfengyuan/vue-number-input": "2",
|
|
24
|
+
"@edgedev/firebase": "latest",
|
|
25
|
+
"@unovis/ts": "^1.4.1",
|
|
26
|
+
"@unovis/vue": "^1.4.1",
|
|
27
|
+
"@vee-validate/zod": "^4.13.1",
|
|
28
|
+
"@vueuse/core": "10.4.1",
|
|
29
|
+
"class-variance-authority": "^0.7.0",
|
|
30
|
+
"clsx": "^2.1.1",
|
|
31
|
+
"embla-carousel": "^8.1.5",
|
|
32
|
+
"embla-carousel-vue": "^8.1.5",
|
|
33
|
+
"lucide-vue-next": "^0.394.0",
|
|
34
|
+
"maska": "2.1.9",
|
|
35
|
+
"radix-vue": "^1.8.3",
|
|
36
|
+
"tailwind-merge": "^2.3.0",
|
|
37
|
+
"tailwindcss-animate": "^1.0.7",
|
|
38
|
+
"v-calendar": "^3.1.2",
|
|
39
|
+
"vaul-vue": "^0.1.2",
|
|
40
|
+
"vee-validate": "^4.13.1",
|
|
41
|
+
"vue-sonner": "^1.1.2",
|
|
42
|
+
"vue-upload-component": "^3.1.17",
|
|
43
|
+
"zod": "^3.23.8"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@antfu/eslint-config": "0.35.1",
|
|
47
|
+
"@capacitor/assets": "3.0.0",
|
|
48
|
+
"@capacitor/cli": "5.4.1",
|
|
49
|
+
"@mdi/font": "7.1.96",
|
|
50
|
+
"@nuxt/devtools": "0.7.2",
|
|
51
|
+
"@nuxtjs/color-mode": "^3.4.1",
|
|
52
|
+
"@nuxtjs/tailwindcss": "^6.12.0",
|
|
53
|
+
"@types/node": "18.11.18",
|
|
54
|
+
"@vant/nuxt": "1.0.3",
|
|
55
|
+
"eslint": "8.33.0",
|
|
56
|
+
"firebase": "9.17.1",
|
|
57
|
+
"nuxt": "3.9.3",
|
|
58
|
+
"sass": "1.58.0",
|
|
59
|
+
"shadcn-nuxt": "^0.10.4",
|
|
60
|
+
"typescript": "4.9.5",
|
|
61
|
+
"vuedraggable": "4.1.0",
|
|
62
|
+
"vuetify": "^3.5.1"
|
|
63
|
+
}
|
|
64
|
+
}
|