-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.19 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.19 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
36
37
38
39
{
"name": "dragger",
"version": "1.2.6",
"description": "Drag and drop any block to rearrange content in Obsidian",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"lint": "eslint src --config eslint.config.mjs",
"lint:fix": "eslint src --config eslint.config.mjs --fix",
"lint:review": "eslint src --config eslint.config.mjs --max-warnings=0",
"typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"obsidian",
"plugin",
"drag-drop",
"blocks"
],
"author": "Ariestar",
"license": "MIT",
"devDependencies": {
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@types/node": "^16.11.6",
"builtin-modules": "^3.3.0",
"eslint": "^9.38.0",
"eslint-plugin-obsidianmd": "^0.1.9",
"esbuild": "^0.17.3",
"jsdom": "^22.1.0",
"obsidian": "latest",
"tslib": "^2.4.0",
"typescript": "^4.9.0",
"typescript-eslint": "^8.55.0",
"vitest": "^0.34.6"
}
}