fortifyjs-react
Version:
React integration for Nehonix FortifyJS - Secure state management with enhanced object operations
99 lines (98 loc) • 2.85 kB
JSON
{
"name": "fortifyjs-react",
"version": "1.0.6",
"description": "React integration for Nehonix FortifyJS - Secure state management with enhanced object operations",
"main": "./dist/index.cjs",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"clean": "rimraf dist",
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run clean && npm run build",
"test": "node private/test-hooks.js",
"test:build": "node private/build-test.js",
"test:all": "npm run test && npm run test:build",
"dev": "npm run build:watch",
"demo": "echo 'Demo available in private/demo.tsx - use with React renderer'"
},
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"keywords": [
"react",
"hooks",
"security",
"fortifyjs",
"typescript",
"secure-state",
"enhanced-objects",
"cryptography",
"state-management",
"functional-programming",
"type-safe",
"encryption",
"military-grade",
"quantum-resistant"
],
"author": {
"name": "Nehonix",
"url": "https://nehonix.space"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nehonix/FortifyJS.git",
"directory": "src/integrations/react"
},
"bugs": {
"url": "https://github.com/nehonix/FortifyJS/issues"
},
"homepage": "https://lab.nehonix.space/nehonix_viewer/_doc/FortifyJS",
"peerDependencies": {
"react": ">=16.8.0"
},
"peerDependenciesMeta": {
"react": {
"optional": false
},
"fortify2-js": {
"optional": false
}
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.0",
"@types/react": "^19.1.6",
"jest": "^29.5.0",
"rimraf": "^4.4.0",
"rollup": "^3.29.4",
"rollup-plugin-dts": "^6.2.1",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=16.0.0"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"dependencies": {
"fortify2-js": "^4.1.6"
}
}