-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "obsidian-float-mark",
"version": "0.1.21",
"description": "Feishu-style floating selection actions, visual text highlights, side comments, and optional Lark sync support.",
"main": "main.js",
"type": "module",
"scripts": {
"build": "tsc --noEmit && node esbuild.config.mjs production",
"dev": "node esbuild.config.mjs",
"release:check": "node scripts/release.mjs",
"release:flow": "node scripts/release-flow.mjs",
"release:official": "node scripts/release-official.mjs",
"release:publish": "node scripts/release.mjs --publish",
"test": "node test/test-i18n.mjs && node test/test-storage.mjs && node test/test-main-file-reference.mjs && node test/test-sidebar-vault.mjs && node test/test-sidebar-reply.mjs && node test/test-anchors.mjs && node test/test-editor-anchor-tracker.mjs && node test/test-editor-refresh.mjs && node test/test-block-map.mjs && node test/test-lark-table-cell.mjs && node test/test-block-menu-position.mjs && node test/test-popover-position.mjs && node test/test-mark-appearance.mjs && node test/test-mark-style-popover.mjs && node test/test-mark-click-guard.mjs && node test/test-editor-decorations.mjs && node test/test-editor-selection-rect.mjs && node test/test-editor-table-renderer.mjs && node test/test-reading-selection.mjs && node test/test-reading-selection-toolbar.mjs && node test/test-comment-popover.mjs && node test/test-preview-sections.mjs && node test/test-reading-view-renderer.mjs && node test/test-release-notes.mjs && node test/test-review-warnings.mjs && node test/test-long-document-performance.mjs"
},
"keywords": [
"obsidian",
"annotations",
"comments",
"lark",
"feishu"
],
"author": "wanghuan",
"license": "MIT",
"devDependencies": {
"@codemirror/state": "6.5.0",
"@codemirror/view": "^6.38.2",
"@types/node": "^20.19.0",
"esbuild": "^0.25.5",
"jsdom": "^26.1.0",
"obsidian": "^1.8.7",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
}
}