{
	"name": "json-accelerator",
	"version": "0.1.7",
	"description": "Speed up JSON stringification by providing OpenAPI/TypeBox model",
	"license": "MIT",
	"scripts": {
		"dev": "bun run --watch example/index.ts",
		"test": "bun test && npm run test:node",
		"test:node": "npm install --prefix ./test/node/cjs/ && npm install --prefix ./test/node/esm/ && node ./test/node/cjs/index.js && node ./test/node/esm/index.js",
		"build": "bun build.ts",
		"release": "npm run build && npm run test && npm publish --access public"
	},
	"peerDependencies": {
		"@sinclair/typebox": ">= 0.34.0"
	},
	"peerDependenciesMeta": {
		"@sinclair/typebox": {
			"optional": true
		}
	},
	"devDependencies": {
		"@types/bun": "1.2.10",
		"elysia": "^1.2.25",
		"eslint": "9.6.0",
		"fast-json-stringify": "^6.0.1",
		"mitata": "^1.0.34",
		"tsup": "^8.4.0",
		"tsx": "^4.19.2",
		"typescript": "^5.8.2"
	},
	"main": "./dist/cjs/index.js",
	"module": "./dist/index.mjs",
	"types": "./dist/index.d.ts",
	"exports": {
		"./package.json": "./package.json",
		".": {
			"types": "./dist/index.d.ts",
			"import": "./dist/index.mjs",
			"require": "./dist/cjs/index.js"
		}
	},
	"keywords": [
		"elysia",
		"json",
		"stringify",
		"accelerator"
	],
	"repository": {
		"type": "git",
		"url": "https://github.com/elysiajs/json-accelerator"
	},
	"author": {
		"name": "saltyAom",
		"url": "https://github.com/SaltyAom",
		"email": "saltyaom@gmail.com"
	},
	"homepage": "https://github.com/elysiajs/json-accelerator",
	"bugs": "https://github.com/elysiajs/json-accelerator/issues"
}
