mirror of
https://github.com/svemagie/obsidian-micropub.git
synced 2026-05-14 19:38:50 +02:00
2b2e5f33bf
- 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
39 lines
873 B
JSON
39 lines
873 B
JSON
{
|
|
"name": "@codemirror/state",
|
|
"version": "6.5.0",
|
|
"description": "Editor state data structures for the CodeMirror code editor",
|
|
"scripts": {
|
|
"test": "cm-runtests",
|
|
"prepare": "cm-buildhelper src/index.ts"
|
|
},
|
|
"keywords": [
|
|
"editor",
|
|
"code"
|
|
],
|
|
"author": {
|
|
"name": "Marijn Haverbeke",
|
|
"email": "marijn@haverbeke.berlin",
|
|
"url": "http://marijnhaverbeke.nl"
|
|
},
|
|
"type": "module",
|
|
"main": "dist/index.cjs",
|
|
"exports": {
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"types": "dist/index.d.ts",
|
|
"module": "dist/index.js",
|
|
"sideEffects": false,
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@marijn/find-cluster-break": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@codemirror/buildhelper": "^1.0.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/codemirror/state.git"
|
|
}
|
|
}
|