{
	"name": "errorstacks",
	"version": "2.4.2",
	"description": "Parse error stack traces",
	"main": "dist/cjs/index.js",
	"module": "dist/esm/index.js",
	"types": "dist/types/index.d.ts",
	"exports": {
		".": {
			"types": "./dist/types/index.d.ts",
			"import": "./dist/esm/index.mjs",
			"require": "./dist/cjs/index.js"
		},
		"./package.json": "./package.json",
		"./": "./"
	},
	"publishConfig": {
		"access": "public",
		"provenance": true
	},
	"engines": {
		"node": ">=24"
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/marvinhagemeister/errorstacks.git"
	},
	"bugs": {
		"url": "https://github.com/marvinhagemeister/errorstacks/issues"
	},
	"files": [
		"dist/"
	],
	"scripts": {
		"test": "mocha -r ts-node/register --extension ts 'test/*test.ts'",
		"build": "rimraf dist/ && tsc && tsc -p tsconfig.esm.json && node tools/postbuild.js && check-export-map",
		"format": "prettier --write src/**/*.ts test/**/*.ts",
		"prepublishOnly": "npm run build"
	},
	"author": "Marvin Hagemeister <hello@marvinh.dev>",
	"license": "MIT",
	"devDependencies": {
		"@types/chai": "^4.2.11",
		"@types/mocha": "^7.0.2",
		"@types/node": "^13.11.0",
		"chai": "^4.2.0",
		"check-export-map": "^1.0.1",
		"husky": "^4.3.0",
		"lint-staged": "^10.4.0",
		"mocha": "^7.1.1",
		"prettier": "^2.1.2",
		"rimraf": "^3.0.2",
		"ts-node": "^8.8.1",
		"typescript": "^3.8.3"
	},
	"prettier": {
		"useTabs": true,
		"arrowParens": "avoid"
	},
	"lint-staged": {
		"**/*.{js,jsx,ts,tsx,json}": [
			"prettier --write"
		]
	},
	"husky": {
		"hooks": {
			"pre-commit": "lint-staged"
		}
	}
}
