typesync
Version:
Install missing TypeScript typings for your dependencies.
80 lines (79 loc) • 2.4 kB
JSON
{
"name": "typesync",
"version": "0.14.1",
"type": "module",
"description": "Install missing TypeScript typings for your dependencies.",
"engines": {
"node": "^18.20.0 || ^20.10.0 || >=22.0.0"
},
"files": [
"dist",
"bin"
],
"bin": {
"typesync": "./bin/typesync"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest --ui",
"fix": "eslint --fix && npm run format",
"lint": "eslint && tsc && npm run format:check",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"lint:watch": "nodemon --exec npm run lint",
"build": "tsdown",
"build:watch": "tsdown --watch",
"run-cli": "npm run build && node bin/typesync",
"run-cli:dry": "npm run run-cli -- --dry",
"do:publish": "npm run lint && npm run test && npm run build && npm publish",
"release:patch": "npm version patch && npm run do:publish && git push --follow-tags",
"release:minor": "npm version minor && npm run do:publish && git push --follow-tags",
"release:prerelease": "npm version prerelease && npm run do:publish && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeffijoe/typesync.git"
},
"author": "Jeff Hansen <jeff@jeffijoe.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeffijoe/typesync/issues"
},
"homepage": "https://github.com/jeffijoe/typesync#readme",
"dependencies": {
"awilix": "^12.0.4",
"chalk": "^5.4.1",
"cosmiconfig": "^9.0.0",
"detect-indent": "^7.0.1",
"js-yaml": "^4.1.0",
"npm-registry-fetch": "^18.0.2",
"ora": "^8.1.1",
"semver": "^7.7.0",
"tinyglobby": "^0.2.10"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/js-yaml": "~4.0.9 || ~4.1.0",
"@types/node": "^22.13.0",
"@types/npm-registry-fetch": "^8.0.7 || ~17.1.0",
"@types/semver": "~7.5.8 || ~7.6.0",
"@vitest/coverage-v8": "^3.0.4",
"@vitest/ui": "^3.0.4",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"nodemon": "^3.1.9",
"oxc-transform": "^0.48.1",
"prettier": "^3.4.2",
"tsdown": "^0.5.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"vitest": "^3.0.4"
},
"packageManager": "npm@10.8.2"
}