@wizzard-packages/devtools 0.1.0 → 0.1.1

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 (3) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +41 -0
  3. package/package.json +18 -4
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 Aziz
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Aziz Isapov
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,41 @@
1
+ # @wizzard-packages/devtools
2
+
3
+ ![npm](https://img.shields.io/npm/v/@wizzard-packages/devtools)
4
+ ![downloads](https://img.shields.io/npm/dm/@wizzard-packages/devtools)
5
+ ![license](https://img.shields.io/npm/l/@wizzard-packages/devtools)
6
+
7
+ DevTools UI for Wizzard Stepper. Inspect state, actions, and errors while you build.
8
+
9
+ ## Install
10
+
11
+ ```bash
12
+ pnpm add @wizzard-packages/devtools
13
+ ```
14
+
15
+ ## Usage
16
+
17
+ ```tsx
18
+ import { WizardDevTools } from '@wizzard-packages/devtools';
19
+
20
+ export function App() {
21
+ return (
22
+ <>
23
+ <WizardDevTools />
24
+ {/* rest of your UI */}
25
+ </>
26
+ );
27
+ }
28
+ ```
29
+
30
+ The panel is hidden by default. Open it with `?devtools=true` in the URL or `#?devtools=true` for hash routing.
31
+
32
+ ## Fits in the stack
33
+
34
+ - React bindings: @wizzard-packages/react
35
+ - Core engine: @wizzard-packages/core
36
+ - Optional middleware: @wizzard-packages/middleware
37
+
38
+ ## Links
39
+
40
+ - Repo: https://github.com/ZizzX/wizzard-packages
41
+ - Docs UI: https://zizzx.github.io/wizzard-packages/
package/package.json CHANGED
@@ -1,7 +1,12 @@
1
1
  {
2
2
  "name": "@wizzard-packages/devtools",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "DevTools UI for Wizzard Stepper.",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/ZizzX/wizzard-packages.git",
8
+ "directory": "packages/devtools"
9
+ },
5
10
  "type": "module",
6
11
  "main": "./dist/index.cjs",
7
12
  "module": "./dist/index.js",
@@ -19,13 +24,22 @@
19
24
  "require": "./dist/index.cjs"
20
25
  }
21
26
  },
27
+ "keywords": [
28
+ "wizard",
29
+ "stepper",
30
+ "devtools",
31
+ "react",
32
+ "debug",
33
+ "form"
34
+ ],
35
+ "license": "MIT",
22
36
  "dependencies": {
23
- "@wizzard-packages/react": "0.1.0"
37
+ "@wizzard-packages/react": "0.1.1"
24
38
  },
25
39
  "peerDependencies": {
26
40
  "react": ">=18.0.0",
27
41
  "react-dom": ">=18.0.0",
28
- "@wizzard-packages/core": "0.1.0"
42
+ "@wizzard-packages/core": "0.1.1"
29
43
  },
30
44
  "devDependencies": {
31
45
  "react": "^19.2.0",
@@ -33,7 +47,7 @@
33
47
  "tsup": "^8.3.5",
34
48
  "typescript": "^5.7.2",
35
49
  "vitest": "^4.0.16",
36
- "@wizzard-packages/core": "0.1.0"
50
+ "@wizzard-packages/core": "0.1.1"
37
51
  },
38
52
  "scripts": {
39
53
  "build": "tsup",