@secure-storage/common
Version:
NPM package for storing and managing data across window local-storage and session-storage securely
71 lines (70 loc) • 1.76 kB
JSON
{
"name": "@secure-storage/common",
"version": "1.0.8",
"description": "NPM package for storing and managing data across window local-storage and session-storage securely",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"module": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"ci": "npm run test && npm run build && npm run check-exports",
"test": "tsx src/test/store.ts",
"dev-test": "nodemon -- src/test/store.ts"
},
"files": [
"dist"
],
"keywords": [
"encrypted",
"secure",
"local",
"session",
"storage",
"react",
"securestorage",
"encryptedstorage",
"localstorage",
"sessionstorage",
"reactstorage",
"secure storage",
"encrypted storage",
"local storage",
"session storage",
"react storage",
"react secure local storage"
],
"author": "Sanjiv39",
"license": "MIT",
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.1",
"@types/crypto-js": "^4.2.2",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.15.17",
"browser-env": "^3.3.0",
"jsdom": "^26.1.0",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"window": "^4.2.7"
},
"dependencies": {
"crypto-js": "^4.2.0"
},
"homepage": "https://github.com/Sanjiv39/secure-storage#readme",
"repository": "https://github.com/Sanjiv39/secure-storage"
}