{
	"name": "ts-evaluator",
	"version": "1.2.0",
	"description": "An interpreter for Typescript that can evaluate an arbitrary Node within a Typescript AST",
	"scripts": {
		"generate:sandhog": "sandhog all --yes",
		"generate:changelog": "standard-changelog --first-release",
		"generate:all": "pnpm run generate:sandhog && pnpm run generate:changelog",
		"clean": "rimraf dist",
		"lint": "tsc --noEmit && eslint \"{src,test}/**/*.ts\" --color",
		"prettier": "prettier --write \"{src,test,documentation}/**/*.{js,ts,json,html,xml,css,md}\"",
		"test": "cross-env NODE_NO_WARNINGS=1 FORCE_COLOR=3 NODE_OPTIONS=\"--loader=tsx --max_old_space_size=6144\" ava",
		"prebuild": "pnpm run clean",
		"build": "pnpm run prebuild && pnpm run rollup",
		"rollup": "rollup -c rollup.config.mjs",
		"preversion": "pnpm run lint && pnpm run build",
		"version": "pnpm run generate:all && git add .",
		"release": "np --no-cleanup --no-yarn --no-tests",
		"update:check": "pnpx npm-check-updates -x typescript-*,ava --dep dev,prod",
		"update:commit": "pnpx npm-check-updates -u -x typescript-*,ava --dep dev,prod && pnpm update && pnpm install"
	},
	"keywords": [
		"typescript",
		"ts",
		"interpreter",
		"evaluate",
		"evaluator",
		"ast"
	],
	"files": [
		"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": {
		"@types/jsdom": "^21.1.1",
		"@types/node": "^20.4.7",
		"@types/object-path": "^0.11.1",
		"@types/semver": "^7.5.0",
		"@typescript-eslint/eslint-plugin": "^6.2.1",
		"@typescript-eslint/parser": "^6.2.1",
		"@wessberg/ts-config": "^4.0.0",
		"@wessberg/prettier-config": "^1.0.0",
		"rollup-plugin-ts": "3.4.2",
		"ava": "^5.3.1",
		"cross-env": "^7.0.3",
		"eslint": "^8.46.0",
		"eslint-config-prettier": "^8.10.0",
		"eslint-plugin-import": "^2.28.0",
		"eslint-plugin-jsdoc": "^46.4.5",
		"helpertypes": "^0.0.19",
		"husky": "^8.0.3",
		"memfs": "^4.2.0",
		"np": "8.0.4",
		"npm-check-updates": "^16.10.17",
		"pnpm": "^8.6.11",
		"prettier": "^3.0.1",
		"pretty-quick": "^3.1.3",
		"rimraf": "^5.0.1",
		"rollup": "^3.27.2",
		"sandhog": "^2.0.2",
		"semver": "7.5.4",
		"jsdom": "^22.1.0",
		"standard-changelog": "^3.0.0",
		"tsx": "^3.12.7",
		"typescript": "^5.1.6",
		"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-2": "npm:typescript@4.7.2",
		"typescript-4-8-2": "npm:typescript@4.8.2",
		"typescript-4-9-4": "npm:typescript@4.9.4",
		"typescript-5-0-4": "npm:typescript@5.0.4"
	},
	"dependencies": {
		"ansi-colors": "^4.1.3",
		"object-path": "^0.11.8",
		"crosspath": "^2.0.0"
	},
	"peerDependencies": {
		"typescript": ">=3.2.x || >= 4.x || >= 5.x",
		"jsdom": ">=14.x || >=15.x || >=16.x || >=17.x || >=18.x || >=19.x || >=20.x || >=21.x || >=22.x"
	},
	"peerDependenciesMeta": {
		"jsdom": {
			"optional": true
		}
	},
	"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",
	"funding": {
		"type": "github",
		"url": "https://github.com/wessberg/ts-evaluator?sponsor=1"
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/wessberg/ts-evaluator.git"
	},
	"bugs": {
		"url": "https://github.com/wessberg/ts-evaluator/issues"
	},
	"engines": {
		"node": ">=14.19.0"
	},
	"prettier": "@wessberg/prettier-config",
	"ava": {
		"files": [
			"test/**/*.test.ts"
		],
		"verbose": true,
		"timeout": "400s",
		"concurrency": 1,
		"extensions": {
			"ts": "module"
		}
	}
}
