This commit is contained in:
Vitalii Litvinchuk
2026-06-10 15:09:45 +03:00
commit dc8c379ecf
20 changed files with 4457 additions and 0 deletions
+48
View File
@@ -0,0 +1,48 @@
{
"author": "CryptoLocker",
"license": "MIT",
"description": "AES encryption logic and Vite plugin for React components",
"keywords": [
"react",
"vite",
"encryption",
"crypto",
"security"
],
"name": "@crypto-locker/core",
"version": "1.0.0",
"type": "module",
"main": "./dist/crypto-locker.umd.cjs",
"module": "./dist/crypto-locker.js",
"exports": {
".": {
"import": "./dist/crypto-locker.js",
"require": "./dist/crypto-locker.umd.cjs"
},
"./plugin": "./src/plugin.ts"
},
"files": [
"dist",
"src"
],
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"crypto-js": "^4.2.0"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@vitejs/plugin-react": "^4.5.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"typescript": "^5.8.0",
"vite": "^6.3.5"
},
"scripts": {
"build": "vite build"
}
}