@cnvx/nodal 0.0.2 → 0.0.4

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 +0 -20
  2. package/package.json +20 -3
package/README.md CHANGED
@@ -8,26 +8,6 @@ A Svelte 5 library for creating interactive node diagrams with customizable conn
8
8
  - SVG Rendering
9
9
  - Fully typed
10
10
 
11
- ## Installation
12
-
13
- ### JSR (JavaScript Registry)
14
- ```bash
15
- # Deno
16
- deno add @cnvx/nodal
17
-
18
- # npm
19
- npx jsr add @cnvx/nodal
20
-
21
- # Yarn
22
- yarn dlx jsr add @cnvx/nodal
23
-
24
- # pnpm
25
- pnpm dlx jsr add @cnvx/nodal
26
-
27
- # Bun
28
- bunx jsr add @cnvx/nodal
29
- ```
30
-
31
11
  ## Quick Start
32
12
 
33
13
  ```svelte
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@cnvx/nodal",
3
3
  "private": false,
4
4
  "license": "MIT",
5
- "version": "0.0.2",
5
+ "version": "0.0.4",
6
6
  "scripts": {
7
7
  "dev": "vite dev",
8
8
  "build": "vite build && npm run prepack",
@@ -43,6 +43,7 @@
43
43
  "@sveltejs/kit": "^2.22.0",
44
44
  "@sveltejs/package": "^2.0.0",
45
45
  "@sveltejs/vite-plugin-svelte": "^6.0.0",
46
+ "@tailwindcss/vite": "^4.1.11",
46
47
  "@vitest/browser": "^3.2.3",
47
48
  "eslint": "^9.18.0",
48
49
  "eslint-config-prettier": "^10.0.1",
@@ -61,6 +62,22 @@
61
62
  "vitest-browser-svelte": "^0.1.0"
62
63
  },
63
64
  "keywords": [
64
- "svelte"
65
- ]
65
+ "svelte",
66
+ "diagram",
67
+ "nodes",
68
+ "graph",
69
+ "visualization",
70
+ "flow-chart",
71
+ "connections",
72
+ "bezier",
73
+ "smoothstep"
74
+ ],
75
+ "repository": {
76
+ "type": "git",
77
+ "url": "git+https://github.com/Convex-Works/nodal.git"
78
+ },
79
+ "dependencies": {
80
+ "@sveltejs/adapter-static": "^3.0.8",
81
+ "mdsvex": "^0.12.6"
82
+ }
66
83
  }