Module
🦕For NPM module authors that would like to support Deno but do not want to write and maintain a port.
Latest
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788{ "name": "denoify", "version": "1.6.16", "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": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": "./dist/index.js", "./lib/config/parseParams": "./dist/lib/config/parseParams.js" }, "repository": { "type": "git", "url": "git://github.com/garronej/denoify" }, "scripts": { "prepare": "patch-package", "build": "tsx scripts/build.ts", "pretest": "yarn build", "test": "vitest", "prettier": "prettier '**/*.{ts,tsx,json,md}'", "format": "yarn prettier --write", "format:check": "yarn prettier --list-different", "link-in-demo-app": "tsx scripts/link-in-starter.ts" }, "bin": { "denoify": "dist/bin/main.js", "enable_short_npm_import_path": "dist/bin/enable_short_npm_import_path.js", "remove_deno_dist_from_gitignore": "dist/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/", "dist/" ], "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" }}