{
	"name": "@ph.fritsche/cjstoesm",
	"version": "2.1.2-alpha.0",
	"private": false,
	"description": "A tool that can transform CommonJS to ESM",
	"scripts": {
		"clean": "rimraf dist",
		"lint": "tsc --noEmit && eslint \"src/**/*.ts\" --color",
		"prettier": "prettier --write \"{src,test,documentation}/**/*.{js,ts,json,html,xml,css,md}\"",
		"test": "NODE_OPTIONS='--loader=tsx' ava",
		"prebuild": "pnpm run clean",
		"build": "pnpm run prebuild && pnpm run rollup",
		"build:built_in_module_map": "ts-node --esm script/generate-built-in-module-map.ts",
		"prewatch": "pnpm run clean",
		"watch": "pnpm run prewatch && pnpm run rollup:watch",
		"rollup": "rollup -c rollup.config.mjs",
		"rollup:watch": "rollup -c rollup.config.js --watch",
		"preversion": "pnpm run lint && pnpm run build:built_in_module_map && pnpm run build",
		"update:check": "pnpx npm-check-updates -x typescript-*,ava,@types/resolve --dep dev,prod",
		"update:commit": "pnpx npm-check-updates -u -x typescript-*,ava,@types/resolve --dep dev,prod && pnpm update && pnpm install"
	},
	"keywords": [
		"typescript",
		"cjs",
		"commonjs",
		"esm",
		"es6",
		"es6 modules",
		"transformer",
		"custom transformer",
		"treeshake",
		"cli",
		"api"
	],
	"bin": {
		"cjstoesm": "bin/cjstoesm.js"
	},
	"files": [
		"bin/**/*.*",
		"dist/**/*.*"
	],
	"contributors": [
		{
			"name": "Frederik Wessberg",
			"email": "frederikwessberg@hotmail.com",
			"url": "https://github.com/wessberg",
			"imageUrl": "https://avatars2.githubusercontent.com/u/20454213?s=460&v=4",
			"role": "Lead Developer",
			"twitter": "FredWessberg",
			"github": "wessberg"
		}
	],
	"license": "MIT",
	"devDependencies": {
		"@rollup/plugin-node-resolve": "^13.3.0",
		"@types/node": "^17.0.41",
		"@types/prettier": "^2.6.3",
		"@types/reserved-words": "^0.1.0",
		"@types/resolve": "1.20.0",
		"@types/semver": "^7.3.9",
		"@typescript-eslint/eslint-plugin": "^6.13.2",
		"@typescript-eslint/parser": "^6.13.2",
		"@wessberg/ts-config": "2.0.3",
		"@wessberg/prettier-config": "1.0.0",
		"rollup-plugin-ts": "3.4.5",
		"ava": "3.15.0",
		"eslint": "^8.55.0",
		"eslint-config-prettier": "^8.5.0",
		"eslint-plugin-import": "^2.26.0",
		"eslint-plugin-jsdoc": "^39.3.2",
		"husky": "^8.0.1",
		"memfs": "^3.4.4",
		"np": "7.6.1",
		"npm-check-updates": "^13.1.1",
		"pnpm": "^7.1.9",
		"prettier": "^2.6.2",
		"pretty-quick": "^3.1.3",
		"rimraf": "^3.0.2",
		"rollup": "^2.75.6",
		"semver": "7.3.7",
		"standard-changelog": "^2.0.27",
		"tslib": "^2.4.0",
		"tsx": "^4.6.2",
		"typescript": "5.3.3",
		"typescript-3-2-1": "npm:typescript@4.2.3",
		"typescript-3-3-1": "npm:typescript@4.2.3",
		"typescript-3-4-1": "npm:typescript@3.4.1",
		"typescript-3-5-1": "npm:typescript@3.5.1",
		"typescript-3-6-2": "npm:typescript@3.6.2",
		"typescript-3-7-2": "npm:typescript@3.7.2",
		"typescript-3-8-3": "npm:typescript@3.8.3",
		"typescript-3-9-2": "npm:typescript@3.9.2",
		"typescript-4-0-3": "npm:typescript@4.0.3",
		"typescript-4-1-2": "npm:typescript@4.1.2",
		"typescript-4-2-4": "npm:typescript@4.2.4",
		"typescript-4-3-5": "npm:typescript@4.3.5",
		"typescript-4-4-2": "npm:typescript@4.4.2",
		"typescript-4-5-4": "npm:typescript@4.5.4",
		"typescript-4-6-4": "npm:typescript@4.6.4",
		"typescript-4-7-3": "npm:typescript@4.7.3"
	},
	"dependencies": {
		"@wessberg/stringutil": "^1.0.19",
		"ansi-colors": "^4.1.3",
		"commander": "^9.3.0",
		"compatfactory": "^1.0.1",
		"crosspath": "^2.0.0",
		"fast-glob": "^3.2.11",
		"helpertypes": "^0.0.18",
		"reserved-words": "^0.1.2",
		"resolve": "^1.22.0"
	},
	"peerDependencies": {
		"typescript": ">=3.2.x || >= 4.x"
	},
	"exports": {
		"import": "./dist/esm/index.js",
		"require": "./dist/cjs/index.cjs"
	},
	"type": "module",
	"types": "./dist/esm/index.d.ts",
	"main": "./dist/cjs/index.cjs",
	"module": "./dist/esm/index.js",
	"repository": {
		"type": "git",
		"url": "https://github.com/wessberg/cjstoesm.git"
	},
	"bugs": {
		"url": "https://github.com/wessberg/cjstoesm/issues"
	},
	"engines": {
		"node": ">=14.9.0"
	},
	"prettier": "@wessberg/prettier-config",
	"ava": {
		"files": [
			"test/**.test.ts"
		],
		"verbose": true,
		"timeout": "400s",
		"nonSemVerExperiments": {
			"configurableModuleFormat": true
		},
		"extensions": {
			"ts": "module"
		},
		"nodeArguments": [
			"--loader=tsx"
		],
		"environmentVariables": {
			"FORCE_COLOR": "3"
		}
	}
}
