@altano/repository-tools
Version:
Misc tools for dealing with repositories of multiple version control systems (git, svn, etc)
78 lines • 2.32 kB
JSON
{
"name": "@altano/repository-tools",
"version": "2.0.1",
"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.17.4",
"@types/node": "^22.13.10",
"@vitest/coverage-v8": "^3.1.4",
"@vitest/expect": "^3.1.4",
"depcheck": "^1.4.7",
"eslint": "^9.23.0",
"find-cache-dir": "^5.0.0",
"memize": "^2.1.0",
"prettier": "^3.5.3",
"ts-assert-unreachable": "^0.0.9",
"tsdown": "^0.12.9",
"typescript": "^5.8.2",
"vite": "^6.2.6",
"vitest": "^3.1.4",
"@altano/build-config": "0.0.1",
"@altano/testing": "0.0.1",
"@altano/tsconfig": "0.0.1"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown --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"
}
}