@wp-typia/project-tools 0.22.8 → 0.22.10
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/dist/runtime/ai-artifacts.js +3 -4
- package/dist/runtime/ai-feature-artifacts.js +2 -4
- package/dist/runtime/cli-add-block.js +12 -1
- package/dist/runtime/cli-add-filesystem.js +2 -15
- package/dist/runtime/cli-add-types.d.ts +8 -0
- package/dist/runtime/cli-add-types.js +13 -0
- package/dist/runtime/cli-add.d.ts +3 -2
- package/dist/runtime/cli-add.js +2 -2
- package/dist/runtime/cli-core.d.ts +4 -2
- package/dist/runtime/cli-core.js +3 -2
- package/dist/runtime/cli-doctor-workspace-shared.js +3 -0
- package/dist/runtime/cli-doctor-workspace.d.ts +1 -1
- package/dist/runtime/cli-doctor-workspace.js +8 -3
- package/dist/runtime/cli-doctor.js +1 -1
- package/dist/runtime/cli-scaffold.js +3 -3
- package/dist/runtime/create-template-validation.js +2 -28
- package/dist/runtime/fs-async.d.ts +7 -0
- package/dist/runtime/fs-async.js +11 -2
- package/dist/runtime/id-suggestions.d.ts +21 -0
- package/dist/runtime/id-suggestions.js +48 -0
- package/dist/runtime/index.d.ts +5 -2
- package/dist/runtime/index.js +3 -1
- package/dist/runtime/migration-maintenance-verify.js +5 -0
- package/dist/runtime/migration-render-generated.js +4 -0
- package/dist/runtime/package-versions.js +3 -7
- package/dist/runtime/scaffold-repository-reference.js +3 -7
- package/dist/runtime/scaffold.js +3 -3
- package/dist/runtime/template-builtins.js +11 -8
- package/dist/runtime/template-layers.js +2 -2
- package/dist/runtime/template-source-external.d.ts +3 -0
- package/dist/runtime/template-source-external.js +5 -2
- package/dist/runtime/template-source-remote.d.ts +6 -0
- package/dist/runtime/template-source-remote.js +8 -2
- package/dist/runtime/template-source-seeds.d.ts +13 -0
- package/dist/runtime/template-source-seeds.js +36 -8
- package/dist/runtime/template-source.js +2 -2
- package/dist/runtime/typia-llm.js +3 -4
- package/dist/runtime/workspace-inventory-mutations.d.ts +24 -0
- package/dist/runtime/workspace-inventory-mutations.js +132 -0
- package/dist/runtime/workspace-inventory-parser.d.ts +52 -0
- package/dist/runtime/workspace-inventory-parser.js +511 -0
- package/dist/runtime/workspace-inventory-read.d.ts +44 -0
- package/dist/runtime/workspace-inventory-read.js +91 -0
- package/dist/runtime/workspace-inventory-templates.d.ts +35 -0
- package/dist/runtime/workspace-inventory-templates.js +198 -0
- package/dist/runtime/workspace-inventory-types.d.ts +171 -0
- package/dist/runtime/workspace-inventory-types.js +1 -0
- package/dist/runtime/workspace-inventory.d.ts +5 -238
- package/dist/runtime/workspace-inventory.js +4 -901
- package/package.json +7 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wp-typia/project-tools",
|
|
3
|
-
"version": "0.22.
|
|
3
|
+
"version": "0.22.10",
|
|
4
4
|
"description": "Project orchestration and programmatic tooling for wp-typia",
|
|
5
5
|
"packageManager": "bun@1.3.11",
|
|
6
6
|
"type": "module",
|
|
@@ -52,6 +52,11 @@
|
|
|
52
52
|
"import": "./dist/runtime/create-template-validation.js",
|
|
53
53
|
"default": "./dist/runtime/create-template-validation.js"
|
|
54
54
|
},
|
|
55
|
+
"./id-suggestions": {
|
|
56
|
+
"types": "./dist/runtime/id-suggestions.d.ts",
|
|
57
|
+
"import": "./dist/runtime/id-suggestions.js",
|
|
58
|
+
"default": "./dist/runtime/id-suggestions.js"
|
|
59
|
+
},
|
|
55
60
|
"./ai-artifacts": {
|
|
56
61
|
"types": "./dist/runtime/ai-artifacts.d.ts",
|
|
57
62
|
"import": "./dist/runtime/ai-artifacts.js",
|
|
@@ -156,7 +161,7 @@
|
|
|
156
161
|
},
|
|
157
162
|
"dependencies": {
|
|
158
163
|
"@wp-typia/api-client": "^0.4.5",
|
|
159
|
-
"@wp-typia/block-runtime": "^0.5.
|
|
164
|
+
"@wp-typia/block-runtime": "^0.5.1",
|
|
160
165
|
"@wp-typia/rest": "^0.3.13",
|
|
161
166
|
"@wp-typia/block-types": "^0.2.4",
|
|
162
167
|
"mustache": "^4.2.0",
|