UNPKG

@altano/repository-tools

Version:

Misc tools for dealing with repositories of multiple version control systems (git, svn, etc)

79 lines 2.39 kB
{ "name": "@altano/repository-tools", "version": "2.0.3", "description": "Misc tools for dealing with repositories of multiple version control systems (git, svn, etc)", "keywords": [ "repository", "root", "git", "mercurial", "sapling" ], "homepage": "https://github.com/altano/npm-packages/tree/main/packages/repository-tools", "repository": { "type": "git", "url": "https://github.com/altano/npm-packages", "directory": "packages/repository-tools" }, "license": "ISC", "author": { "name": "Alan Norbauer", "email": "altano@gmail.com", "url": "https://alan.norbauer.com" }, "sideEffects": false, "type": "module", "exports": { ".": "./dist/index.js", "./*": "./dist/*" }, "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist/**/*.js", "dist/**/*.js.map", "dist/**/*.d.ts" ], "devDependencies": { "@arethetypeswrong/cli": "^0.18.2", "@types/node": "^25.5.0", "@vitest/coverage-v8": "^4.1.0", "@vitest/expect": "^4.1.0", "depcheck": "^1.4.7", "eslint": "^9.39.4", "find-cache-dir": "^5.0.0", "memize": "^2.1.1", "prettier": "^3.8.1", "ts-assert-unreachable": "^0.0.9", "tsdown": "^0.21.4", "typescript": "^5.9.3", "vite": "^7.3.1", "vitest": "^4.1.0", "@altano/build-config": "0.0.1", "@altano/testing": "0.0.1", "@altano/tsconfig": "0.0.1", "@altano/disposable-directory": "0.0.2" }, "publishConfig": { "access": "public" }, "scripts": { "build": "tsdown --config-loader unrun --config ../build-config/tsdown.config.node.ts", "check:exports": "attw --pack . --profile esm-only --quiet", "check:types:src": "tsc --noEmit", "check:types:test": "tsc --noEmit --project ./tests/tsconfig.json", "check:unused-dependencies": "depcheck", "clean": "rm -rf .turbo && rm -rf .tsbuildinfo && rm -rf node_modules && rm -rf dist", "dev": "pnpm run build --watch", "format": "prettier --check src", "format:fix": "prettier --write src", "lint": "eslint", "lint:fix": "TIMING=1 pnpm lint --fix", "lint:timing": "TIMING=1 pnpm lint", "test:build": "./tests/scripts/createRepositoryBundles.ts", "test:unit": "vitest --run", "test:unit:benchmark": "vitest --run bench", "test:unit:watch": "vitest" } }