jsrepo
Version:
A CLI to add shared code from remote repositories.
127 lines • 3.06 kB
JSON
{
"name": "jsrepo",
"description": "A CLI to add shared code from remote repositories.",
"version": "3.8.1",
"license": "MIT",
"homepage": "https://jsrepo.dev",
"author": {
"name": "Aidan Bleser",
"url": "https://github.com/ieedan"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsrepojs/jsrepo"
},
"bugs": {
"url": "https://github.com/jsrepojs/jsrepo/issues"
},
"keywords": [
"repo",
"cli",
"svelte",
"vue",
"typescript",
"javascript",
"shadcn",
"registry"
],
"type": "module",
"exports": {
".": {
"types": "./dist/api/index.d.mts",
"default": "./dist/api/index.mjs"
},
"./providers": {
"types": "./dist/api/providers.d.mts",
"default": "./dist/api/providers.mjs"
},
"./langs": {
"types": "./dist/api/langs/index.d.mts",
"default": "./dist/api/langs/index.mjs"
},
"./langs/*": {
"types": "./dist/api/langs/*.d.mts",
"default": "./dist/api/langs/*.mjs"
},
"./outputs": {
"types": "./dist/api/outputs.d.mts",
"default": "./dist/api/outputs.mjs"
},
"./config": {
"types": "./dist/api/config.d.mts",
"default": "./dist/api/config.mjs"
},
"./errors": {
"types": "./dist/api/errors.d.mts",
"default": "./dist/api/errors.mjs"
},
"./utils": {
"types": "./dist/api/utils.d.mts",
"default": "./dist/api/utils.mjs"
},
"./warnings": {
"types": "./dist/api/warnings.d.mts",
"default": "./dist/api/warnings.mjs"
}
},
"bin": "./dist/bin.mjs",
"main": "./dist/index.mjs",
"files": [
"dist/**/*",
"!dist/**/*.map"
],
"dependencies": {
"commander": "^14.0.3",
"oxc-parser": "^0.114.0",
"unconfig": "^7.5.0"
},
"peerDependencies": {
"svelte": "^5.0.0",
"vue": "^3.0.0"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
},
"svelte": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^25.3.0",
"@clack/prompts": "1.0.1",
"@types/semver": "^7.7.1",
"@types/tar-stream": "^3.1.4",
"conf": "^15.1.0",
"css-dependency": "^0.0.3",
"dedent": "^1.7.1",
"diff": "^8.0.3",
"escape-string-regexp": "^5.0.0",
"fast-glob": "^3.3.3",
"get-tsconfig": "^4.13.6",
"is-unicode-supported": "^2.1.0",
"magic-string": "^0.30.21",
"nevereverthrow": "^0.3.0",
"node-machine-id": "^1.1.12",
"package-manager-detector": "^1.6.0",
"parse5": "^8.0.0",
"pathe": "^2.0.3",
"picocolors": "^1.1.1",
"semver": "^7.7.4",
"tar-stream": "^3.1.7",
"tinyexec": "^1.0.2",
"tsdown": "0.19.0-beta.3",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"zod": "^4.3.6"
},
"scripts": {
"start": "node ./dist/bin.mjs",
"build": "tsdown",
"dev": "tsdown --watch",
"check": "tsc --noEmit",
"test": "vitest",
"bundle-analyze": "FORCE_COLOR=1 pnpx bundle-analyze . --fail-if-exceeds-bytes 1250000"
}
}