Files
svemagie 2b2e5f33bf feat: IndieAuth PKCE sign-in + GitHub Pages relay callback
- Add IndieAuth.ts: full PKCE sign-in flow via GitHub Pages relay
- Add docs/index.html: client_id page fetched by IndieKit for app info
- Add docs/callback/index.html: relay that forwards to obsidian:// URI
- Update SettingsTab.ts: signed-in/signed-out UI, Sign In button
- Update types.ts: authorizationEndpoint, tokenEndpoint, me fields
- Update main.ts: register obsidian://micropub-auth protocol handler
2026-03-14 17:52:13 +01: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"
}
}