wraith/node_modules/@marijn/find-cluster-break/package.json
Vantz Stockwell 2848d79915 feat: Phase 1 complete — Tauri v2 foundation
Rust backend: SQLite (WAL mode, 8 tables), vault encryption
(Argon2id + AES-256-GCM), settings/connections/credentials
services, 19 Tauri command wrappers. 46/46 tests passing.

Vue 3 frontend: unlock/create vault flow, Pinia app store,
Tailwind CSS v4 dark theme with Wraith branding.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-17 15:09:41 -04:00

36 lines
847 B
JSON

{
"name": "@marijn/find-cluster-break",
"version": "1.0.2",
"type": "module",
"description": "Find the position of grapheme cluster breaks in a string",
"main": "src/index.js",
"exports": {
"import": "./src/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"test": "mocha test/*.js",
"prepare": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marijnh/find-cluster-break.git"
},
"keywords": [
"unicode",
"grapheme",
"cluster",
"break"
],
"author": "Marijn Haverbeke <marijn@haverbeke.berlin>",
"license": "MIT",
"bugs": {
"url": "https://github.com/marijnh/find-cluster-break/issues"
},
"homepage": "https://github.com/marijnh/find-cluster-break#readme",
"devDependencies": {
"mocha": "^10.7.3",
"rollup": "^4.28.1"
}
}