fuma 0.0.2 → 0.0.3

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.
Files changed (2) hide show
  1. package/README.md +15 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,3 +1,18 @@
1
1
  # fuma
2
2
 
3
3
  My fullstake material build with sveltekit, daisyui, zod and more ...
4
+
5
+ ## Fast setup
6
+
7
+ ```sh
8
+ export project="myproject"
9
+ pn create svelte@latest $project
10
+ cd $project
11
+ pn i fuma
12
+ px svelte-add@latest tailwindcss
13
+ pn i -D daisyui@latest
14
+ sed -i "s/plugins: \[\]/plugins: \[require('daisyui')\],\n\tdaisyui: {\n\t\tlogs: false\n\t}\n/g" tailwind.config.cjs
15
+
16
+
17
+ git init && git add -A && git commit -m "Initial commit"
18
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fuma",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "My fullstake material build with sveltekit, daisyui, zod and more",
5
5
  "author": {
6
6
  "name": "Jonas Voisard",
@@ -25,7 +25,6 @@
25
25
  "svelte": "^4.0.0"
26
26
  },
27
27
  "devDependencies": {
28
- "@mdi/js": "^7.4.47",
29
28
  "@sveltejs/adapter-auto": "^3.0.0",
30
29
  "@sveltejs/kit": "^2.5.6",
31
30
  "@sveltejs/package": "^2.0.0",
@@ -54,6 +53,7 @@
54
53
  "vitest": "^1.2.0"
55
54
  },
56
55
  "dependencies": {
56
+ "@mdi/js": "^7.4.47",
57
57
  "@tiptap/core": "^2.3.0",
58
58
  "@tiptap/extension-color": "^2.3.0",
59
59
  "@tiptap/extension-highlight": "^2.3.0",