@pantoken/vue 0.1.25 → 0.1.27
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/dist/scaffold-preset.d.mts +10 -0
- package/dist/scaffold-preset.mjs +14 -0
- package/package.json +10 -7
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { base, createPreset } from "@pantoken/scaffold-base";
|
|
2
|
+
//#region src/scaffold-preset.ts
|
|
3
|
+
/**
|
|
4
|
+
* Preset for scaffolding Vue 3 projects with pantoken.
|
|
5
|
+
*
|
|
6
|
+
* Platform: `vue`
|
|
7
|
+
*/
|
|
8
|
+
const presetVue = createPreset({
|
|
9
|
+
name: "vue",
|
|
10
|
+
base,
|
|
11
|
+
blocks: []
|
|
12
|
+
});
|
|
13
|
+
//#endregion
|
|
14
|
+
export { presetVue };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pantoken/vue",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.27",
|
|
4
4
|
"description": "Vue plugin for pantoken: registers the web components and reads tokens.",
|
|
5
5
|
"homepage": "https://pantoken.iywahl.com",
|
|
6
6
|
"bugs": "https://github.com/thedannywahl/pantoken/issues",
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
"exports": {
|
|
21
21
|
".": "./dist/index.mjs",
|
|
22
22
|
"./components.css": "./dist/components.css",
|
|
23
|
+
"./scaffold-preset": "./dist/scaffold-preset.mjs",
|
|
23
24
|
"./package.json": "./package.json"
|
|
24
25
|
},
|
|
25
26
|
"publishConfig": {
|
|
@@ -27,15 +28,17 @@
|
|
|
27
28
|
"provenance": true
|
|
28
29
|
},
|
|
29
30
|
"dependencies": {
|
|
30
|
-
"@pantoken/i18n": "0.1.
|
|
31
|
-
"@pantoken/
|
|
31
|
+
"@pantoken/i18n": "0.1.14",
|
|
32
|
+
"@pantoken/scaffold-base": "0.2.0",
|
|
33
|
+
"@pantoken/web-components": "0.5.7"
|
|
32
34
|
},
|
|
33
35
|
"devDependencies": {
|
|
34
|
-
"@
|
|
36
|
+
"@pantoken/components": "1.0.2",
|
|
37
|
+
"@types/node": "^26.3.0",
|
|
38
|
+
"bingo-stratum": "^0.5.13",
|
|
35
39
|
"typescript": "^7.0.2",
|
|
36
|
-
"vite": "npm:@voidzero-dev/vite-plus-core@0.
|
|
37
|
-
"vite-plus": "0.
|
|
38
|
-
"@pantoken/components": "1.0.0"
|
|
40
|
+
"vite": "npm:@voidzero-dev/vite-plus-core@0.3.0",
|
|
41
|
+
"vite-plus": "0.3.0"
|
|
39
42
|
},
|
|
40
43
|
"peerDependencies": {
|
|
41
44
|
"vue": ">=3"
|