sd-wildcards-utils
Version:
Parse Stable Diffusion wildcards source to a YAML object.
150 lines (149 loc) • 6.67 kB
JSON
{
"name": "sd-wildcards-utils",
"version": "1.3.19",
"description": "Parse Stable Diffusion wildcards source to a YAML object.",
"keywords": [
"wildcards",
"sd-dynamic-prompts",
"dynamic-prompts",
"yaml",
"yml",
"stable-diffusion-webui",
"stable-diffusion-webui-forge",
"sd-webui",
"sd-webui-forge",
"forge",
"ai",
"sd",
"a1111",
"sd-webui-extensions",
"extensions",
"create-by-yarn-tool",
"create-by-tsdx"
],
"homepage": "https://github.com/bluelovers/sd-wildcards-utils#readme",
"bugs": {
"url": "https://github.com/bluelovers/sd-wildcards-utils/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bluelovers/sd-wildcards-utils.git"
},
"license": "ISC",
"author": "bluelovers",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.esm.mjs"
},
"./package.json": "./package.json",
"./src/*": "./src/*"
},
"main": "dist/index.cjs",
"unpkg": "dist/index.umd.production.min.cjs",
"module": "dist/index.esm.mjs",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"scripts": {
"review": "yarn run review:coverage",
"review:coverage": "yarn run lint && yarn run coverage",
"review:test": "yarn run lint && yarn run test",
"coverage": "yarn run test -- --coverage",
"lint": "yarn run lint:eslint",
"lint:eslint": "ynpx eslint --ext .ts,.tsx,.mts,.cts ./",
"pretest": "echo pretest",
"test": "yarn run test:jest:snapshot",
"test:jest:snapshot:cache": "yarn run test:jest -- -u test/cache.spec.ts",
"test:jest": "jest --passWithNoTests",
"test:jest:clearCache": "jest --clearCache",
"test:jest:coverage": "yarn run test:jest -- --coverage",
"test:jest:snapshot": "yarn run test:jest -- -u",
"test:mocha": "ynpx --quiet -p ts-node -p mocha mocha -- --require ts-node/register \"!(node_modules)/**/*.{test,spec}.{ts,tsx}\"",
"test:snapshot": "yarn run test -- -u",
"test:tsd": "ynpx tsd",
"test:tsdx": "ynpx @bluelovers/tsdx test --passWithNoTests",
"posttest": "yarn run build",
"install:frozenLockfile": "yarn-tool install --frozen-lockfile",
"install:resetLockfile": "yarn-tool install --reset-lockfile",
"build": "yarn run build:tsdx && yarn run build:dts:bundle",
"build:dts:bundle": "echo ynpx @bluelovers/dts-bundle-generator -o ./dist/index.d.ts ./src/index.ts --no-banner --inline-declare-global & echo build:dts:bundle",
"build:dts:copy": "copy .\\src\\index.d.ts .\\dist\\index.d.ts & echo build:dts",
"build:dts:tsc": "yarn run build:dts:tsc:emit && yarn run build:dts:copy",
"build:dts:tsc:emit": "tsc --emitDeclarationOnly --declaration --noEmit false",
"build:microbundle": "ynpx microbundle --target node",
"build:tsdx": "tsdx build --target node --name index",
"postbuild": "node --run ci:build & echo postbuild",
"ci:install": "yarn install --frozen-lockfile && yarn add -W yarn-tool lerna@6 ynpx ts-node ts-jest jest typescript@next @bluelovers/jest-config tsx",
"ci:build": "yarn run ci:build:core && yarn run test:jest:snapshot && yarn run ci:build:commit && yarn run ci:build:commit:snapshots",
"ci:build:commit:snapshots": "git add ./test/__file_snapshots__ ./test/__snapshots__ && git commit ./test/__file_snapshots__ ./test/__snapshots__ -m \"build: update snapshots [skip ci]\" & echo ci:build:commit:snapshots",
"ci:build:commit": "git add ./output && git commit ./output -m \"build: update build [skip ci]\" & echo ci:build:commit",
"ci:build:core": "tsx ./test/script/build-all.ts",
"ci:build:copy": "tsx ./test/script/output/ci-copy-to-output.ts",
"npm:publish": "npm publish",
"npm:publish:bump": "yarn run version:bump && npm publish",
"npm:publish:bump:major": "yarn run version:bump:major && npm publish",
"npm:publish:bump:minor": "yarn run version:bump:minor && npm publish",
"npm:publish:bump:patch": "yarn run version:bump:patch && npm publish",
"npm:publish:bump:prerelease": "yarn run version:bump:prerelease && npm publish",
"ws:fix-all": "yarn-tool fix-all --overwriteHostedGitInfo",
"ws:fix-all:resetStaticFiles": "yarn run ws:fix-all -- --resetStaticFiles",
"preversion": "echo preversion && yarn run test",
"version": "echo version",
"version:bump": "yarn-tool version",
"version:bump:major": "yarn run version:bump -- --bump major",
"version:bump:minor": "yarn run version:bump -- --bump minor",
"version:bump:patch": "yarn run version:bump -- --bump patch",
"version:bump:prerelease": "yarn run version:bump -- --bump prerelease",
"postversion": "echo postversion",
"prepublish": "echo prepublish",
"prepare": "echo prepare",
"prepublishOnly_": "yarn run preversion",
"prepublishOnly:check-bin": "ynpx --quiet @yarn-tool/check-pkg-bin",
"prepack": "echo prepack",
"pack": "echo pack",
"postpack": "echo postpack",
"publish": "echo publish",
"postpublish_": "yarn run postpublish:changelog && yarn run postpublish:git:commit && yarn run postpublish:git:tag && yarn run postpublish:git:push",
"postpublish:changelog": "ynpx --quiet @yarn-tool/changelog && git add ./CHANGELOG.md",
"postpublish:git:commit": "git add ./test/__file_snapshots__ & git commit -m \"chore(release): publish\" . & echo postpublish:git:commit",
"postpublish:git:push": "git push --follow-tags",
"postpublish:git:tag": "ynpx --quiet @yarn-tool/tag",
"postpublishOnly": "echo postpublishOnly",
"ncu": "yarn-tool ncu -u",
"sort-package-json": "yarn-tool sort",
"tsc:default": "tsc -p tsconfig.json",
"tsc:esm": "tsc -p tsconfig.esm.json",
"tsc:showConfig": "ynpx get-current-tsconfig -p"
},
"dependencies": {
"@bluelovers/extract-brackets": "^0.0.8",
"array-hyper-unique": "^2.1.6",
"lazy-aggregate-error": "^1.0.21",
"picomatch": "^4.0.2",
"yaml": "^2.6.0"
},
"devDependencies": {
"@bluelovers/tsconfig": "^1.0.35",
"@types/bluebird": "^3.5.42",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/jsonfile": "^6.1.4",
"@types/jszip": "^3.4.1",
"@types/node": "^22.9.0",
"@types/picomatch": "^3.0.1",
"bluebird": "^3.7.2",
"debug-color2": "^1.3.2",
"deepmerge-plus": "^3.0.2",
"dot-values2": "^2.0.7",
"fs-extra": "^11.2.0",
"jest-file-snapshot2": "^0.5.15",
"jszip": "^3.10.1",
"jszip-fixed-date": "^1.0.7",
"ts-type": "^3.0.1",
"tslib": ">=2.6.2",
"upath2": "^3.1.20"
},
"packageManager": "yarn@1.22.19"
}