UNPKG

@sanity/migrate

Version:

Tooling for running data migrations on Sanity.io projects

121 lines 3.23 kB
{ "name": "@sanity/migrate", "version": "5.2.0", "description": "Tooling for running data migrations on Sanity.io projects", "keywords": [ "sanity", "cms", "headless", "realtime", "content", "migrate", "migration" ], "homepage": "https://www.sanity.io/", "bugs": { "url": "https://github.com/sanity-io/migrate/issues" }, "repository": { "type": "git", "url": "git+https://github.com/sanity-io/migrate.git" }, "license": "MIT", "author": "Sanity.io <hello@sanity.io>", "sideEffects": false, "type": "module", "exports": { ".": { "source": "./src/_exports/index.ts", "default": "./dist/index.js" }, "./package.json": "./package.json" }, "main": "./dist/index.js", "types": "./dist/index.d.ts", "bin": { "sanity": "./bin/run.js" }, "files": [ "bin", "dist", "oclif.manifest.json", "src" ], "oclif": { "bin": "sanity", "commands": "./dist/commands", "dirname": "sanity", "plugins": [ "@oclif/plugin-help" ], "topicSeparator": " " }, "dependencies": { "@oclif/core": "^4.8.0", "@oclif/plugin-help": "^6.2.36", "@sanity/cli-core": "^0.1.0-alpha.3", "@sanity/cli-test": "^0.0.2-alpha.1", "@sanity/client": "^7.13.2", "@sanity/mutate": "^0.15.0", "@sanity/types": "^5.0.1", "@sanity/util": "^5.0.1", "arrify": "^2.0.1", "console-table-printer": "^2.15.0", "debug": "^4.4.3", "fast-fifo": "^1.3.2", "get-tsconfig": "^4.13.0", "groq-js": "^1.24.0", "lodash-es": "^4.17.22", "p-map": "^7.0.1", "tsx": "^4.21.0" }, "devDependencies": { "@eslint/compat": "^2.0.0", "@eslint/js": "^9.36.0", "@oclif/test": "^4.1.15", "@stylistic/eslint-plugin": "^5.6.1", "@swc/cli": "^0.7.9", "@swc/core": "^1.15.7", "@types/debug": "^4.1.12", "@types/lodash-es": "^4.17.12", "@types/node": "^25.0.3", "@vitest/coverage-v8": "^4.0.16", "chokidar": "^5.0.0", "eslint": "9.39.2", "eslint-config-prettier": "^10.1.8", "eslint-import-resolver-typescript": "^4.4.4", "eslint-plugin-import": "^2.32.0", "eslint-plugin-n": "^17.23.1", "eslint-plugin-perfectionist": "^5.0.0", "eslint-plugin-tsdoc": "^0.5.0", "eslint-plugin-unicorn": "^62.0.0", "eslint-plugin-unused-imports": "^4.3.0", "oclif": "^4.22.57", "prettier": "^3.6.2", "prettier-plugin-packagejson": "^2.5.19", "rimraf": "^6.1.2", "typescript": "^5.9.3", "typescript-eslint": "^8.50.0", "vitest": "^4.0.16" }, "engines": { "node": ">=20.19 <22 || >=22.12" }, "publishConfig": { "access": "public" }, "scripts": { "build": "swc src -d dist --strip-leading-paths && tsc -p tsconfig.build.json --emitDeclarationOnly", "postbuild": "oclif manifest", "build:types": "tsc --project tsconfig.build.json", "clean": "rimraf dist node_modules", "coverage": "vitest run --coverage", "dev": "tsc --watch", "format": "prettier --write .", "lint": "eslint .", "lint:fix": "eslint . --fix", "test": "vitest run", "typecheck": "tsc --noEmit", "watch": "swc src -d dist --strip-leading-paths --watch" } }