48 lines
1.0 KiB
JSON
48 lines
1.0 KiB
JSON
{
|
|
"author": "CryptoLocker",
|
|
"license": "MIT",
|
|
"description": "AES encryption logic and Vite plugin for React components",
|
|
"keywords": [
|
|
"react",
|
|
"vite",
|
|
"encryption",
|
|
"crypto",
|
|
"security"
|
|
],
|
|
"name": "vite-plugin-component-locker",
|
|
"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"
|
|
}
|
|
} |