Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
b84ec82
feat: restructure app components and implement secure storage functio…
mCodex Nov 10, 2025
374328e
example: overhaul App.tsx to use hooks-based playground UI
mCodex Oct 28, 2025
6c06007
chore: bump dev/example deps and normalize README version notation
mCodex Nov 3, 2025
139427d
fix(auth): treat authentication cancellations as soft-failures and ma…
mCodex Nov 3, 2025
5a7fdf5
docs: add error-handling section to README and introduce SECURITY.md
mCodex Nov 3, 2025
178ff25
chore: normalize formatting in hooks (semicolons/spacing) and bump ex…
mCodex Nov 3, 2025
d44fe89
Release 6.0.0-rc.9
mCodex Nov 3, 2025
d729ab6
fix(ios): run SecItemCopyMatching on main thread and refine auth canc…
mCodex Nov 5, 2025
c64b8bc
Release 6.0.0-rc.10
mCodex Nov 5, 2025
09c4237
fix(ios): prompt simulator biometric auth before keychain fetch and p…
mCodex Nov 5, 2025
0156051
Release 6.0.0-rc.11
mCodex Nov 5, 2025
bd8a3f5
Merge branch 'master' into feat/keyRotation
mCodex Nov 10, 2025
3fadd68
feat(rotation): implement envelope encryption and migration utilities
mCodex Nov 10, 2025
68abcff
feat: enhance secure storage hooks with error handling and option val…
mCodex Nov 10, 2025
defb2f7
feat(rotation): implement key rotation and re-encryption functionality
mCodex Nov 10, 2025
05bdf16
feat(rotation): add key rotation functionality with automatic re-encr…
mCodex Nov 10, 2025
0bd3be1
feat(rotation): enhance key rotation process with improved error hand…
mCodex Nov 10, 2025
1df0ae1
feat(rotation): require explicit values for key rotation request para…
mCodex Nov 10, 2025
a520418
feat: Enhance error handling and validation in SensitiveInfo API
mCodex Nov 10, 2025
6be17c0
Refactor platform logic and add modular managers
mCodex Nov 10, 2025
3994082
Refactor access control and metadata handling for platform parity
mCodex Nov 10, 2025
eaf8ff2
feat: Improve error handling and null safety in metadata decoding and…
mCodex Nov 10, 2025
1b8f844
feat: Enhance error handling and logging in key rotation and sensitiv…
mCodex Nov 10, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Development files
src/
.nitro/
.github/
docs/
coverage/
example/

# Configuration files
eslint.config.mts
babel.config.js
jest.config.js
tsconfig.json
tsconfig.test.json
tsconfig.tsbuildinfo
.prettierrc.js
.watchmanconfig
nitro.json
release.config.cjs
post-script.js

# Git and environment
.git/
.gitignore
.DS_Store
.yarn/
.yarnrc.yml

# Node modules and lock files
node_modules/
yarn.lock

# Build artifacts (except lib/)
.nitro/
nitrogen/

# Documentation
CODE_OF_CONDUCT.md
SECURITY.md

# Test files
**/*.test.ts
**/*.test.tsx
**/*.spec.ts
**/*.spec.tsx
7 changes: 5 additions & 2 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
module.exports = {
singleQuote: true,
trailingComma: 'all',
printWidth: 100,
semi: true,
tabWidth: 2,
trailingComma: 'es5',
useTabs: false,
quoteProps: 'consistent',
};
Loading
Loading