wp-typia 0.11.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.
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # `wp-typia`
2
+
3
+ Canonical CLI package for `wp-typia`.
4
+
5
+ Use this package for new installs:
6
+
7
+ - `npx wp-typia create my-block`
8
+ - `bunx wp-typia create my-block`
9
+
10
+ Compatibility notes:
11
+
12
+ - `@wp-typia/create` remains available for existing installs and programmatic imports
13
+ - `create-wp-typia` remains available only as the legacy initializer shim until it is archived
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ import "@wp-typia/create/cli";
package/package.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "wp-typia",
3
+ "version": "0.11.1",
4
+ "description": "Canonical CLI package for wp-typia scaffolding and project workflows",
5
+ "packageManager": "bun@1.3.10",
6
+ "type": "module",
7
+ "bin": {
8
+ "wp-typia": "bin/wp-typia.js"
9
+ },
10
+ "files": [
11
+ "bin/",
12
+ "README.md",
13
+ "package.json"
14
+ ],
15
+ "keywords": [
16
+ "wordpress",
17
+ "gutenberg",
18
+ "typia",
19
+ "cli",
20
+ "scaffold",
21
+ "templates"
22
+ ],
23
+ "author": "imjlk",
24
+ "license": "GPL-2.0-or-later",
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "git+https://github.com/imjlk/wp-typia.git",
28
+ "directory": "packages/wp-typia"
29
+ },
30
+ "bugs": {
31
+ "url": "https://github.com/imjlk/wp-typia/issues"
32
+ },
33
+ "homepage": "https://github.com/imjlk/wp-typia/tree/main/packages/wp-typia#readme",
34
+ "publishConfig": {
35
+ "access": "public"
36
+ },
37
+ "engines": {
38
+ "node": ">=20.0.0",
39
+ "npm": ">=10.0.0",
40
+ "bun": ">=1.3.10"
41
+ },
42
+ "dependencies": {
43
+ "@wp-typia/create": "^0.11.1"
44
+ }
45
+ }