{
	"name": "@poppinss/chokidar-ts",
	"version": "4.1.4",
	"description": "File watcher that creates a file watcher after parsing tsconfig.json file",
	"main": "build/index.js",
	"type": "module",
	"files": [
		"build",
		"!build/bin",
		"!build/tests"
	],
	"exports": {
		".": "./build/index.js",
		"./types": "./build/src/types.js"
	},
	"engines": {
		"node": ">=18.16.0"
	},
	"scripts": {
		"pretest": "npm run lint",
		"test": "cross-env NODE_DEBUG=chokidar:ts c8 npm run quick:test",
		"clean": "del-cli build",
		"typecheck": "tsc --noEmit",
		"precompile": "npm run lint && npm run clean",
		"compile": "tsup-node && tsc --emitDeclarationOnly --declaration",
		"build": "npm run compile",
		"release": "np",
		"version": "npm run build",
		"format": "prettier --write .",
		"prepublishOnly": "npm run build",
		"lint": "eslint . --ext=.ts",
		"sync-labels": "github-label-sync --labels .github/labels.json poppinss/chokidar-ts",
		"quick:test": "node --loader=ts-node/esm bin/test.ts"
	},
	"keywords": [
		"typescript",
		"tsc",
		"tsc-watch",
		"chokidar"
	],
	"author": "virk,poppinss",
	"license": "MIT",
	"devDependencies": {
		"@adonisjs/eslint-config": "^1.3.0",
		"@adonisjs/prettier-config": "^1.3.0",
		"@adonisjs/tsconfig": "^1.3.0",
		"@commitlint/cli": "^19.2.1",
		"@commitlint/config-conventional": "^19.1.0",
		"@japa/assert": "^2.1.0",
		"@japa/file-system": "^2.2.0",
		"@japa/runner": "^3.1.1",
		"@swc/core": "^1.4.11",
		"@types/node": "^20.11.30",
		"@types/picomatch": "^2.3.3",
		"c8": "^9.1.0",
		"cross-env": "^7.0.3",
		"del-cli": "^5.1.0",
		"eslint": "^8.57.0",
		"github-label-sync": "^2.3.1",
		"husky": "^9.0.11",
		"np": "^10.0.2",
		"prettier": "^3.2.5",
		"ts-node": "^10.9.2",
		"tsup": "^8.0.2",
		"typescript": "^5.4.3"
	},
	"dependencies": {
		"chokidar": "^3.6.0",
		"emittery": "^1.0.3",
		"memoize": "^10.0.0",
		"picomatch": "^4.0.2",
		"slash": "^5.1.0"
	},
	"peerDependencies": {
		"typescript": "^4.0.0 || ^5.0.0"
	},
	"repository": {
		"type": "git",
		"url": "git+https://github.com/poppinss/chokidar-ts.git"
	},
	"bugs": {
		"url": "https://github.com/poppinss/chokidar-ts/issues"
	},
	"homepage": "https://github.com/poppinss/chokidar-ts#readme",
	"commitlint": {
		"extends": [
			"@commitlint/config-conventional"
		]
	},
	"publishConfig": {
		"access": "public",
		"tag": "latest"
	},
	"np": {
		"message": "chore(release): %s",
		"tag": "latest",
		"branch": "main",
		"anyBranch": false
	},
	"c8": {
		"reporter": [
			"text",
			"html"
		],
		"exclude": [
			"tests/**"
		]
	},
	"eslintConfig": {
		"extends": "@adonisjs/eslint-config/package"
	},
	"prettier": "@adonisjs/prettier-config",
	"tsup": {
		"entry": [
			"./index.ts",
			"./src/types.ts"
		],
		"outDir": "./build",
		"clean": true,
		"format": "esm",
		"dts": false,
		"sourcemap": true,
		"target": "esnext"
	}
}
