mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-25 10:08:29 +02:00
Move faker plugin from external to bundled
This commit is contained in:
45
package-lock.json
generated
45
package-lock.json
generated
@@ -12,7 +12,7 @@
|
|||||||
"packages/plugin-runtime",
|
"packages/plugin-runtime",
|
||||||
"packages/plugin-runtime-types",
|
"packages/plugin-runtime-types",
|
||||||
"plugins-external/mcp-server",
|
"plugins-external/mcp-server",
|
||||||
"plugins-external/template-function-faker",
|
"plugins/template-function-faker",
|
||||||
"plugins-external/httpsnippet",
|
"plugins-external/httpsnippet",
|
||||||
"plugins/action-copy-curl",
|
"plugins/action-copy-curl",
|
||||||
"plugins/action-copy-grpcurl",
|
"plugins/action-copy-grpcurl",
|
||||||
@@ -4153,6 +4153,10 @@
|
|||||||
"resolved": "plugins/auth-oauth2",
|
"resolved": "plugins/auth-oauth2",
|
||||||
"link": true
|
"link": true
|
||||||
},
|
},
|
||||||
|
"node_modules/@yaak/faker": {
|
||||||
|
"resolved": "plugins/template-function-faker",
|
||||||
|
"link": true
|
||||||
|
},
|
||||||
"node_modules/@yaak/filter-jsonpath": {
|
"node_modules/@yaak/filter-jsonpath": {
|
||||||
"resolved": "plugins/filter-jsonpath",
|
"resolved": "plugins/filter-jsonpath",
|
||||||
"link": true
|
"link": true
|
||||||
@@ -16058,6 +16062,18 @@
|
|||||||
"name": "@yaak/auth-oauth2",
|
"name": "@yaak/auth-oauth2",
|
||||||
"version": "0.1.0"
|
"version": "0.1.0"
|
||||||
},
|
},
|
||||||
|
"plugins/faker": {
|
||||||
|
"name": "@yaak/faker",
|
||||||
|
"version": "1.1.1",
|
||||||
|
"extraneous": true,
|
||||||
|
"dependencies": {
|
||||||
|
"@faker-js/faker": "^10.1.0"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@types/node": "^25.0.3",
|
||||||
|
"typescript": "^5.9.3"
|
||||||
|
}
|
||||||
|
},
|
||||||
"plugins/filter-jsonpath": {
|
"plugins/filter-jsonpath": {
|
||||||
"name": "@yaak/filter-jsonpath",
|
"name": "@yaak/filter-jsonpath",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
@@ -16135,6 +16151,33 @@
|
|||||||
"name": "@yaak/template-function-encode",
|
"name": "@yaak/template-function-encode",
|
||||||
"version": "0.1.0"
|
"version": "0.1.0"
|
||||||
},
|
},
|
||||||
|
"plugins/template-function-faker": {
|
||||||
|
"name": "@yaak/faker",
|
||||||
|
"version": "1.1.1",
|
||||||
|
"dependencies": {
|
||||||
|
"@faker-js/faker": "^10.1.0"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@types/node": "^25.0.3",
|
||||||
|
"typescript": "^5.9.3"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"plugins/template-function-faker/node_modules/@faker-js/faker": {
|
||||||
|
"version": "10.3.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-10.3.0.tgz",
|
||||||
|
"integrity": "sha512-It0Sne6P3szg7JIi6CgKbvTZoMjxBZhcv91ZrqrNuaZQfB5WoqYYbzCUOq89YR+VY8juY9M1vDWmDDa2TzfXCw==",
|
||||||
|
"funding": [
|
||||||
|
{
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/fakerjs"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": "^20.19.0 || ^22.13.0 || ^23.5.0 || >=24.0.0",
|
||||||
|
"npm": ">=10"
|
||||||
|
}
|
||||||
|
},
|
||||||
"plugins/template-function-fs": {
|
"plugins/template-function-fs": {
|
||||||
"name": "@yaak/template-function-fs",
|
"name": "@yaak/template-function-fs",
|
||||||
"version": "0.1.0"
|
"version": "0.1.0"
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
"packages/plugin-runtime",
|
"packages/plugin-runtime",
|
||||||
"packages/plugin-runtime-types",
|
"packages/plugin-runtime-types",
|
||||||
"plugins-external/mcp-server",
|
"plugins-external/mcp-server",
|
||||||
"plugins-external/template-function-faker",
|
"plugins/template-function-faker",
|
||||||
"plugins-external/httpsnippet",
|
"plugins-external/httpsnippet",
|
||||||
"plugins/action-copy-curl",
|
"plugins/action-copy-curl",
|
||||||
"plugins/action-copy-grpcurl",
|
"plugins/action-copy-grpcurl",
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/mountain-loop/yaak.git",
|
"url": "https://github.com/mountain-loop/yaak.git",
|
||||||
"directory": "plugins-external/faker"
|
"directory": "plugins/template-function-faker"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "yaakcli build",
|
"build": "yaakcli build",
|
||||||
Reference in New Issue
Block a user