denoify
Version:
For NPM module authors that would like to support Deno but do not want to write and maintain a port.
190 lines (189 loc) • 6.67 kB
JSON
{
"name": "denoify",
"version": "1.6.17",
"homepage": "https://denoify.land",
"description": "For NPM module authors that would like to support Deno but do not want to write and maintain a port.",
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
".": "./index.js",
"./lib/config/parseParams": "./lib/config/parseParams.js"
},
"repository": {
"type": "git",
"url": "git://github.com/garronej/denoify"
},
"bin": {
"denoify": "./bin/main.js",
"enable_short_npm_import_path": "./bin/enable_short_npm_import_path.js",
"remove_deno_dist_from_gitignore": "./bin/remove_deno_dist_from_gitignore.js"
},
"lint-staged": {
"*.{ts,tsx,json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -v"
}
},
"author": "u/garronej",
"license": "MIT",
"keywords": [
"deno",
"transpile",
"cjs",
"CommonJs"
],
"files": [
"src/bin/enable_short_npm_import_path.ts",
"src/bin/lib/getIsDryRun.ts",
"src/bin/main.ts",
"src/bin/remove_deno_dist_from_gitignore.ts",
"src/bin/replacer/fast-xml-parser.ts",
"src/bin/replacer/graphql.ts",
"src/bin/replacer/index.ts",
"src/bin/replacer/ipaddr.js.ts",
"src/bin/replacer/react-dom.ts",
"src/bin/replacer/react.ts",
"src/bin/replacer/rxjs.ts",
"src/index.ts",
"src/lib/builtins/__dirname.ts",
"src/lib/builtins/__filename.ts",
"src/lib/builtins/buffer.ts",
"src/lib/builtins/index.ts",
"src/lib/builtins/process.ts",
"src/lib/config/fileAndContent.ts",
"src/lib/config/index.ts",
"src/lib/config/parseParams.ts",
"src/lib/denoify.ts",
"src/lib/denoifyImportExportStatement.ts",
"src/lib/denoifySingleFile.ts",
"src/lib/getCurrentStdVersion.ts",
"src/lib/getInstalledVersionPackageJson.ts",
"src/lib/getThirdPartyDenoModuleInfos.ts",
"src/lib/replacer.ts",
"src/lib/resolveNodeModuleToDenoModule/index.ts",
"src/lib/resolveNodeModuleToDenoModule/knownPorts.ts",
"src/lib/resolveNodeModuleToDenoModule/resolveNodeModuleToDenoModule.ts",
"src/lib/types/ModuleAddress.ts",
"src/lib/types/ParsedImportExportStatement.ts",
"src/tools/Version.ts",
"src/tools/addCache.ts",
"src/tools/crawl.ts",
"src/tools/createDirectoryIfNotExistsRecursive.ts",
"src/tools/exec.ts",
"src/tools/fetchWithTimeout.ts",
"src/tools/fsCopy.ts",
"src/tools/getProjectRoot.ts",
"src/tools/githubTags.ts",
"src/tools/globProxy.ts",
"src/tools/is404.ts",
"src/tools/isInsideOrIsDir.ts",
"src/tools/moveContentUpOneLevel.ts",
"src/tools/pathDepth.ts",
"src/tools/removeFromGitignore.ts",
"src/tools/replaceAsync.ts",
"src/tools/resolvePathsWithWildcards.ts",
"src/tools/runSequentially.ts",
"src/tools/toPosix.ts",
"src/tools/transformCodebase.ts",
"src/tools/urlJoin.ts",
"101.index.js",
"bin/101.index.js",
"bin/enable_short_npm_import_path.d.ts",
"bin/enable_short_npm_import_path.js",
"bin/lib/getIsDryRun.d.ts",
"bin/main.d.ts",
"bin/main.js",
"bin/remove_deno_dist_from_gitignore.d.ts",
"bin/remove_deno_dist_from_gitignore.js",
"bin/replacer/fast-xml-parser.d.ts",
"bin/replacer/graphql.d.ts",
"bin/replacer/index.d.ts",
"bin/replacer/index.js",
"bin/replacer/ipaddr.js.d.ts",
"bin/replacer/react-dom.d.ts",
"bin/replacer/react.d.ts",
"bin/replacer/rxjs.d.ts",
"index.d.ts",
"index.js",
"lib/builtins/__dirname.d.ts",
"lib/builtins/__filename.d.ts",
"lib/builtins/buffer.d.ts",
"lib/builtins/index.d.ts",
"lib/builtins/process.d.ts",
"lib/config/fileAndContent.d.ts",
"lib/config/index.d.ts",
"lib/config/parseParams.d.ts",
"lib/config/parseParams.js",
"lib/denoify.d.ts",
"lib/denoifyImportExportStatement.d.ts",
"lib/denoifySingleFile.d.ts",
"lib/getCurrentStdVersion.d.ts",
"lib/getInstalledVersionPackageJson.d.ts",
"lib/getThirdPartyDenoModuleInfos.d.ts",
"lib/replacer.d.ts",
"lib/resolveNodeModuleToDenoModule/index.d.ts",
"lib/resolveNodeModuleToDenoModule/knownPorts.d.ts",
"lib/resolveNodeModuleToDenoModule/resolveNodeModuleToDenoModule.d.ts",
"lib/types/ModuleAddress.d.ts",
"lib/types/ParsedImportExportStatement.d.ts",
"tools/Version.d.ts",
"tools/addCache.d.ts",
"tools/crawl.d.ts",
"tools/createDirectoryIfNotExistsRecursive.d.ts",
"tools/exec.d.ts",
"tools/fetchWithTimeout.d.ts",
"tools/fsCopy.d.ts",
"tools/getProjectRoot.d.ts",
"tools/githubTags.d.ts",
"tools/globProxy.d.ts",
"tools/is404.d.ts",
"tools/isInsideOrIsDir.d.ts",
"tools/moveContentUpOneLevel.d.ts",
"tools/pathDepth.d.ts",
"tools/removeFromGitignore.d.ts",
"tools/replaceAsync.d.ts",
"tools/resolvePathsWithWildcards.d.ts",
"tools/runSequentially.d.ts",
"tools/toPosix.d.ts",
"tools/transformCodebase.d.ts",
"tools/urlJoin.d.ts"
],
"devDependencies": {
"tsafe": "^1.7.5",
"@types/glob": "^7.1.1",
"@types/js-yaml": "^3.12.3",
"@types/node": "^20.2.3",
"@types/node-fetch": "^2.5.6",
"@types/url-join": "^4.0.0",
"husky": "^4.3.8",
"js-yaml": "^3.13.1",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"typescript": "^4.7.3",
"vitest": "^2.1.2",
"@vercel/ncc": "^0.38.2",
"@octokit/rest": "^18.0.0",
"@types/comment-json": "^1.1.1",
"commander": "^7.0.0",
"comment-json": "^3.0.2",
"cosmiconfig": "^7.0.1",
"evt": "2.5.7",
"get-github-default-branch-name": "^1.0.0",
"gitignore-parser": "0.0.2",
"glob": "^7.1.6",
"minimal-polyfills": "^2.2.3",
"node-fetch": "^3.3.2",
"path-depth": "^1.0.0",
"scripting-tools": "^0.19.14",
"url-join": "^4.0.1",
"chalk": "^5.3.0",
"tsx": "^4.19.1",
"chokidar": "^4.0.1",
"punycode": "^2.3.1",
"patch-package": "^8.0.0"
}
}