{
	"name": "vag_tools",
	"version": "0.1.5",
	"description": "api and cli for managing sub-git-repositories",
	"private": false,
	"repository": {
		"type": "git",
		"url": "git+https://github.com/charlyoleg2/vag.git"
	},
	"keywords": [
		"git",
		"sub-repo",
		"multi-repo",
		"submodule",
		"subtree",
		"vcs",
		"vcstool",
		"repositories"
	],
	"author": "charlyoleg",
	"license": "ISC",
	"bugs": {
		"url": "https://github.com/charlyoleg2/vag/issues"
	},
	"homepage": "https://charlyoleg2.github.io/vag/",
	"type": "module",
	"engines": {
		"node": ">=20.10.0"
	},
	"exports": {
		".": {
			"types": "./dist/vag_core.d.ts",
			"default": "./dist/vag_core.js"
		}
	},
	"bin": {
		"vag": "dist/vag_cli.js",
		"vagg": "dist/vagg_server.js"
	},
	"files": [
		"dist/",
		"!dist/**/*.map",
		"!dist/**/*.test.*",
		"!dist/**/*.spec.*"
	],
	"prettier": {
		"useTabs": true,
		"singleQuote": true,
		"trailingComma": "none",
		"printWidth": 100,
		"plugins": [],
		"overrides": []
	},
	"tsup": {
		"entry": [
			"src/vag_core.ts",
			"src/vag_cli.ts",
			"src/vagg_server.ts",
			"src/tester_websocket_client.ts"
		],
		"format": "esm",
		"splitting": false,
		"dts": true,
		"sourcemap": true,
		"clean": true
	},
	"scripts": {
		"dev": "tsup --watch",
		"build": "tsup",
		"check": "tsc --noEmit",
		"pretty": "prettier --check .",
		"format": "prettier --write .",
		"lint": "eslint .",
		"test:unit": "vitest",
		"test:unit:once": "vitest --run",
		"clean_public": "shx rm -fr dist/public",
		"copy": "shx cp -r ../vag_ui/build dist/public",
		"checkCopy": "ls -l dist/public/index.html",
		"ci": "run-s check build pretty lint test:unit:once clean_public copy checkCopy",
		"clean": "shx rm -fr build dist tmp node_modules",
		"run:cli": "node dist/vag_cli.js",
		"run:server": "node dist/vagg_server.js",
		"run:clients": "tests/run_clients.sh",
		"clean_all": "run-s clean"
	},
	"dependencies": {
		"@hono/node-server": "^1.19.7",
		"fs-extra": "^11.3.3",
		"hono": "^4.11.3",
		"simple-git": "^3.30.0",
		"socket.io": "^4.8.3",
		"socket.io-client": "^4.8.3",
		"yaml": "^2.8.2",
		"yargs": "^18.0.0"
	},
	"devDependencies": {
		"@types/fs-extra": "^11.0.4",
		"@types/node": "^25.0.3",
		"@types/yargs": "^17.0.35",
		"eslint": "^9.39.2",
		"npm-run-all2": "^8.0.4",
		"prettier": "^3.7.4",
		"shx": "^0.4.0",
		"tsup": "^8.5.1",
		"typescript": "^5.9.3",
		"typescript-eslint": "^8.50.1",
		"vitest": "^4.0.16"
	}
}
