{
	"type": "module",
	"name": "@atcute/crypto",
	"version": "2.2.0",
	"description": "lightweight atproto cryptographic library",
	"keywords": [
		"atproto",
		"cryptography",
		"p256",
		"nistp256",
		"k256",
		"secp256k1"
	],
	"license": "MIT",
	"repository": {
		"url": "https://github.com/mary-ext/atcute",
		"directory": "packages/utilities/crypto"
	},
	"files": [
		"dist/",
		"lib/",
		"!lib/**/*.bench.ts",
		"!lib/**/*.test.ts"
	],
	"exports": {
		".": "./dist/index.js"
	},
	"imports": {
		"#keypairs/secp256k1": {
			"bun": "./dist/keypairs/secp256k1-web.js",
			"deno": "./dist/keypairs/secp256k1-web.js",
			"node": "./dist/keypairs/secp256k1-node.js",
			"default": "./dist/keypairs/secp256k1-web.js"
		}
	},
	"sideEffects": false,
	"scripts": {
		"build": "tsc --project tsconfig.build.json",
		"test": "vitest run",
		"prepublish": "rm -rf dist; pnpm run build"
	},
	"devDependencies": {
		"@noble/curves": "^1.8.1",
		"@types/bun": "^1.2.1",
		"@vitest/coverage-v8": "^3.0.4",
		"vitest": "^3.0.4"
	},
	"dependencies": {
		"@atcute/multibase": "workspace:^",
		"@atcute/uint8array": "workspace:^",
		"@noble/secp256k1": "^2.2.3"
	}
}
