npm-ws-tools
Version:
Command line tools for working with npm workspaces. Includes version bumping and dependencies version update
55 lines • 1.24 kB
JSON
{
"name": "npm-ws-tools",
"version": "0.3.0",
"description": "Command line tools for working with npm workspaces. Includes version bumping and dependencies version update",
"type": "module",
"bin": {
"wst": "./bin/wst.mjs"
},
"files": [
"src",
"lib",
"bin"
],
"scripts": {
"build": "tsmod build --esm",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"version",
"ws",
"workspace",
"fix",
"manage",
"update",
"bump",
"version",
"dependency"
],
"author": "bstefanescu <stefanescu.bogdan@gmail.com>",
"homepage": "https://github.com/bstefanescu/npm-ws-tools",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/bstefanescu/npm-ws-tools.git"
},
"license": "MIT",
"dependencies": {
"commander": "^11.1.0",
"glob": "^10.3.10",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.30",
"ts-dual-module": "^0.6.3"
},
"ts_dual_module": {
"outDir": "lib"
},
"exports": {
"types": "./lib/types/index.d.ts",
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
},
"types": "./lib/types/index.d.ts"
}