wocat
Version:
Convert regular dependencies to Catalogs.
66 lines • 1.43 kB
JSON
{
"name": "wocat",
"type": "module",
"version": "1.1.0",
"description": "Convert regular dependencies to Catalogs.",
"author": "Byron <byronogis@outlook.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/byronogis",
"homepage": "https://github.com/byronogis/wocat#readme",
"repository": {
"type": "git",
"url": "https://github.com/byronogis/wocat.git"
},
"bugs": "https://github.com/byronogis/wocat/issues",
"keywords": [
"pnpm",
"catalog",
"catalogs",
"monorepo",
"workspace",
"convert",
"dependencies"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"bin": {
"wocat": "./node_modules/@wocat/cli/bin/index.mjs"
},
"files": [
"dist"
],
"dependencies": {
"@wocat/cli": "1.1.0",
"@wocat/core": "1.1.0"
},
"devDependencies": {
"typescript": "^5.7.3"
},
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"start": "jiti src/index.ts",
"automd": "",
"release": "pnpm publish",
"typecheck": "tsc --noEmit",
"test": "vitest",
"clear": "rimraf dist"
}
}