vag_tools
Version:
api and cli for managing sub-git-repositories
110 lines (109 loc) • 2.42 kB
JSON
{
"name": "vag_tools",
"version": "0.1.1",
"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.14.3",
"fs-extra": "^11.3.0",
"hono": "^4.7.10",
"simple-git": "^3.27.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"yaml": "^2.8.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.15.29",
"@types/yargs": "^17.0.33",
"eslint": "^9.27.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"shx": "^0.4.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.0",
"vitest": "^3.1.4"
}
}