-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 920 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 920 Bytes
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
{
"name": "obsidian-text-tools",
"version": "1.0.8",
"description": "Text manipulation tools for Obsidian",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"obsidian",
"plugin",
"text",
"tools"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/json": "^0.14.0",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"esbuild": "0.24.0",
"eslint": "^9.39.4",
"eslint-plugin-obsidianmd": "^0.1.9",
"globals": "^17.4.0",
"obsidian": "latest",
"tslib": "2.6.0",
"typescript": "5.4.5",
"typescript-eslint": "^8.56.1",
"vitest": "^1.6.1"
}
}