{
	"name": "@tiny-utils/crypto",
	"private": false,
	"publishConfig": {
		"access": "public"
	},
	"version": "1.1.2",
	"description": "Tiny utils for crypto: asymmetric/symmetric encryption, ed25519, sha256, etc.",
	"main": "lib/index.js",
	"types": "lib/index.d.ts",
	"repository": {
		"type": "git",
		"url": "https://github.com/tiny-utils/crypto.git"
	},
	"files": [
		"lib/**/*",
		"src/**/*"
	],
	"scripts": {
		"build": "rimraf ./lib && tsc",
		"format": "prettier --write \"src/**/*.ts\"",
		"lint": "eslint \"src/**/*.ts\" --fix",
		"prepublishOnly": "npm run lint",
		"preversion": "npm run lint"
	},
	"keywords": [
		"tiny-utils",
		"crypto",
		"encryption",
		"ed25519",
		"sha256",
		"symmetric",
		"asymmetric"
	],
	"author": "Danila Simonov",
	"license": "ISC",
	"devDependencies": {
		"@types/node": "22.10.1",
		"@typescript-eslint/eslint-plugin": "8.16.0",
		"@typescript-eslint/parser": "8.16.0",
		"eslint": "9.15.0",
		"eslint-config-prettier": "9.1.0",
		"eslint-import-resolver-typescript": "3.7.0",
		"eslint-plugin-import": "2.31.0",
		"eslint-plugin-prefer-arrow": "1.2.3",
		"eslint-plugin-unused-imports": "4.1.4",
		"prettier": "3.3.3",
		"rimraf": "6.0.1",
		"ts-node": "10.9.2",
		"typescript": "5.7.2"
	},
	"dependencies": {
		"@tiny-utils/bytes": "^1.0.0",
		"js-sha256": "0.9.0",
		"tweetnacl": "1.0.3"
	}
}
