@pantoken/svelte 0.1.26 → 0.1.28

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.
@@ -0,0 +1,10 @@
1
+ import { Preset } from "@pantoken/scaffold-base";
2
+ //#region src/scaffold-preset.d.ts
3
+ /**
4
+ * Preset for scaffolding Svelte projects with pantoken web components.
5
+ *
6
+ * Platform: `svelte`
7
+ */
8
+ declare const presetSvelte: Preset;
9
+ //#endregion
10
+ export { presetSvelte };
@@ -0,0 +1,14 @@
1
+ import { base, createPreset } from "@pantoken/scaffold-base";
2
+ //#region src/scaffold-preset.ts
3
+ /**
4
+ * Preset for scaffolding Svelte projects with pantoken web components.
5
+ *
6
+ * Platform: `svelte`
7
+ */
8
+ const presetSvelte = createPreset({
9
+ name: "svelte",
10
+ base,
11
+ blocks: []
12
+ });
13
+ //#endregion
14
+ export { presetSvelte };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pantoken/svelte",
3
- "version": "0.1.26",
3
+ "version": "0.1.28",
4
4
  "description": "Svelte helpers for pantoken: an icon action over the web components, plus token reads.",
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.13",
31
- "@pantoken/web-components": "0.5.6"
31
+ "@pantoken/i18n": "0.1.15",
32
+ "@pantoken/scaffold-base": "0.2.0",
33
+ "@pantoken/web-components": "0.5.8"
32
34
  },
33
35
  "devDependencies": {
34
- "@types/node": "^24.13.3",
36
+ "@pantoken/components": "1.0.3",
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.2.9",
37
- "vite-plus": "0.2.9",
38
- "@pantoken/components": "1.0.1"
40
+ "vite": "npm:@voidzero-dev/vite-plus-core@0.3.0",
41
+ "vite-plus": "0.3.0"
39
42
  },
40
43
  "peerDependencies": {
41
44
  "svelte": ">=4"