{
	"name": "@gajae-code/natives",
	"version": "0.17.2",
	"description": "Native Rust bindings for grep, clipboard, image processing, syntax highlighting, PTY, and shell operations via N-API",
	"type": "module",
	"homepage": "https://gajae-code.com",
	"author": "Yeachan-Heo",
	"license": "MIT",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/Yeachan-Heo/gajae-code.git",
		"directory": "packages/natives"
	},
	"bugs": {
		"url": "https://github.com/Yeachan-Heo/gajae-code/issues"
	},
	"keywords": [
		"napi",
		"rust",
		"native",
		"grep",
		"text-processing",
		"clipboard",
		"image",
		"pty",
		"shell",
		"syntax-highlighting"
	],
	"main": "./native/index.js",
	"types": "./native/index.d.ts",
	"scripts": {
		"build": "bun scripts/build-native.ts",
		"check": "biome check . && bun run check:types",
		"check:types": "tsc -p tsconfig.json --noEmit",
		"lint": "biome lint .",
		"test": "bun test",
		"fix": "biome check --write --unsafe .",
		"fmt": "biome format --write .",
		"embed:native": "bun scripts/embed-native.ts",
		"bench": "bun bench/grep.ts",
		"bench:edit-hotspots": "bun bench/edit-hotspots.ts"
	},
	"devDependencies": {
		"@napi-rs/cli": "3.6.2",
		"@types/bun": "^1.3.14",
		"@types/ws": "^8.5.13"
	},
	"engines": {
		"bun": ">=1.4.0"
	},
	"napi": {
		"binaryName": "pi_natives",
		"triples": {}
	},
	"files": [
		"native/index.js",
		"native/index.d.ts",
		"native/loader-state.js",
		"native/loader-state.d.ts",
		"native/embedded-addon.js",
		"README.md"
	],
	"optionalDependencies": {
		"@gajae-code/natives-darwin-arm64": "0.17.2",
		"@gajae-code/natives-darwin-x64": "0.17.2",
		"@gajae-code/natives-linux-arm64": "0.17.2",
		"@gajae-code/natives-linux-x64": "0.17.2",
		"@gajae-code/natives-win32-x64": "0.17.2"
	},
	"exports": {
		".": {
			"types": "./native/index.d.ts",
			"import": "./native/index.js",
			"default": "./native/index.js"
		}
	}
}
