-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.25 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.25 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": "viewitall-md",
"version": "2.0.1",
"description": "View and edit Word documents (.docx) natively in Obsidian.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"version:patch": "npm version patch --no-git-tag-version && node version-bump.mjs && git add package.json manifest.json versions.json",
"version:minor": "npm version minor --no-git-tag-version && node version-bump.mjs && git add package.json manifest.json versions.json",
"version:major": "npm version major --no-git-tag-version && node version-bump.mjs && git add package.json manifest.json versions.json",
"lint": "eslint .",
"lint:css": "node scripts/check-css.js",
"lint:all": "eslint . && node scripts/check-css.js"
},
"keywords": [],
"license": "MIT",
"devDependencies": {
"@eslint/js": "9.30.1",
"@types/node": "^16.11.6",
"esbuild": "0.25.5",
"eslint-plugin-obsidianmd": "0.1.9",
"globals": "14.0.0",
"jiti": "2.6.1",
"prettier": "^3.8.1",
"tslib": "2.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "8.35.1"
},
"dependencies": {
"jszip": "^3.10.1",
"obsidian": "latest"
}
}