wizze 0.1.0

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/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # wizze
2
+
3
+ Wrapper público para executar a CLI oficial via:
4
+
5
+ ```bash
6
+ npm exec -- wizze --help
7
+ ```
8
+
9
+ Este pacote delega para `@wizze/wizze-cli`.
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ import 'wizze-cli/dist/index.js';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AACA,OAAO,yBAAyB,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ import 'wizze-cli/dist/index.js';
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AACA,OAAO,yBAAyB,CAAC"}
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "wizze",
3
+ "version": "0.1.0",
4
+ "description": "Wrapper público para executar a Wizze CLI com npm exec.",
5
+ "author": "Master Dev (Taliton Silva)",
6
+ "license": "MIT",
7
+ "type": "module",
8
+ "files": [
9
+ "dist",
10
+ "README.md"
11
+ ],
12
+ "publishConfig": {
13
+ "access": "public"
14
+ },
15
+ "bin": {
16
+ "wizze": "dist/index.js"
17
+ },
18
+ "main": "dist/index.js",
19
+ "types": "dist/index.d.ts",
20
+ "dependencies": {
21
+ "wizze-cli": "workspace:*"
22
+ },
23
+ "scripts": {
24
+ "build": "tsc -p tsconfig.json",
25
+ "lint": "pnpm typecheck",
26
+ "typecheck": "tsc -p tsconfig.json --noEmit",
27
+ "clean": "rm -rf dist"
28
+ },
29
+ "devDependencies": {
30
+ "@types/node": "^22.13.10"
31
+ }
32
+ }