{
	"name": "fast-cipher",
	"version": "0.1.2",
	"description": "A Bun, Node.js, and TypeScript implementation of the FAST format-preserving cipher",
	"type": "module",
	"main": "./dist/index.js",
	"types": "./dist/index.d.ts",
	"exports": {
		".": {
			"types": "./dist/index.d.ts",
			"import": "./dist/index.js",
			"default": "./dist/index.js"
		},
		"./tokens": {
			"types": "./dist/tokens/index.d.ts",
			"import": "./dist/tokens/index.js",
			"default": "./dist/tokens/index.js"
		}
	},
	"files": [
		"dist",
		"README.md",
		"LICENSE"
	],
	"repository": {
		"type": "git",
		"url": "git+https://github.com/jedisct1/js-fast.git"
	},
	"homepage": "https://github.com/jedisct1/js-fast",
	"bugs": {
		"url": "https://github.com/jedisct1/js-fast/issues"
	},
	"license": "ISC",
	"engines": {
		"node": ">=20"
	},
	"sideEffects": false,
	"scripts": {
		"build": "bun run build:js && bun run build:types",
		"build:js": "bun build ./src/index.ts --outfile dist/index.js --target node && bun build ./src/tokens/index.ts --outfile dist/tokens/index.js --target node",
		"build:types": "bunx tsc -p tsconfig.build.json",
		"prepublishOnly": "bun run build",
		"test": "bun test",
		"lint:types": "bunx tsc --noEmit"
	},
	"devDependencies": {
		"@biomejs/biome": "^2.4.8",
		"@types/bun": "^1.3.11",
		"@types/node": "^25.5.0",
		"typescript": "^5.9.3"
	}
}
