{
	"type": "module",
	"name": "@oh-my-pi/omptype",
	"version": "18.2.6",
	"description": "ArkType-compatible runtime schema validation with lazy JIT compilation",
	"homepage": "https://omp.sh",
	"author": "Stencil Labs, Inc.",
	"license": "MIT",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/can1357/oh-my-pi.git",
		"directory": "packages/omptype"
	},
	"bugs": {
		"url": "https://github.com/can1357/oh-my-pi/issues"
	},
	"keywords": [
		"schema",
		"validation",
		"arktype",
		"jit"
	],
	"main": "./dist/js/index.js",
	"types": "./dist/types/index.d.ts",
	"scripts": {
		"check": "oxlint . && oxfmt --check --no-error-on-unmatched-pattern 'src/**/*.{ts,tsx}' '{test,bench,examples,scripts}/**/*.ts' '*.ts' && bun run check:types",
		"check:types": "tsgo -p tsconfig.json --noEmit",
		"lint": "oxlint .",
		"fix": "oxlint --fix --fix-suggestions . && bun run fmt",
		"fmt": "oxfmt --no-error-on-unmatched-pattern 'src/**/*.{ts,tsx}' '{test,bench,examples,scripts}/**/*.ts' '*.ts'",
		"test": "bun test --parallel",
		"bench": "bun bench/bench.ts"
	},
	"devDependencies": {
		"@ark/attest": "0.56.3",
		"@ark/schema": "0.56.2",
		"@ark/util": "0.56.2",
		"@sinclair/typebox": "^0.34.0",
		"@types/bun": "^1.3.14",
		"arkregex": "0.0.8",
		"arktype": "2.2.3"
	},
	"engines": {
		"node": ">=20",
		"bun": ">=1.3.14"
	},
	"files": [
		"src",
		"README.md",
		"CHANGELOG.md",
		"LICENSE",
		"THIRD-PARTY-NOTICES.txt",
		"dist/types",
		"dist/js"
	],
	"exports": {
		".": {
			"types": "./dist/types/index.d.ts",
			"bun": "./src/index.ts",
			"default": "./dist/js/index.js"
		},
		"./*": {
			"types": "./dist/types/*.d.ts",
			"bun": "./src/*.ts",
			"default": "./dist/js/*.js"
		},
		"./*.js": {
			"types": "./dist/types/*.d.ts",
			"bun": "./src/*.ts",
			"default": "./dist/js/*.js"
		}
	}
}
