generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.19 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "metadata-auto-classifier",
"version": "1.12.7",
"description": "Metadata Auto Classifier is an innovative Obsidian plugin that harnesses the power of AI to revolutionize your note-taking experience. By automatically generating and classifying metadata for your notes, this plugin streamlines your workflow and enhances the organization of your knowledge base.",
"main": "main.js",
"packageManager": "pnpm@10.28.2",
"scripts": {
"dev": "node scripts/dev.mjs",
"dev:build": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"ci": "pnpm run build && pnpm run lint && pnpm run test",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --ignore-pattern 'coverage/**' --ignore-pattern '__tests__/**' --ignore-pattern '__mocks__/**'",
"lint:fix": "eslint . --fix --ignore-pattern 'coverage/**' --ignore-pattern '__tests__/**' --ignore-pattern '__mocks__/**'",
"version": "node scripts/version.mjs",
"postversion": "git push && git push --tags",
"release:patch": "node scripts/release.mjs patch",
"release:minor": "node scripts/release.mjs minor",
"release:major": "node scripts/release.mjs major",
"prepare": "husky"
},
"keywords": [
"obsidian",
"plugin",
"AI",
"metadata",
"note-taking"
],
"author": "Beomsu Koh",
"license": "MIT",
"devDependencies": {
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@eslint/js": "9.30.1",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^4.0.18",
"builtin-modules": "3.3.0",
"esbuild": "0.25.5",
"eslint": "9.30.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-obsidianmd": "^0.1.9",
"globals": "14.0.0",
"jiti": "2.6.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"obsidian": "latest",
"prettier": "^3.5.3",
"tslib": "2.6.2",
"typescript": "5.8.3",
"typescript-eslint": "8.35.1",
"vitest": "^4.0.18"
},
"pnpm": {
"overrides": {
"@eslint/plugin-kit": "^0.3.4"
}
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
]
}
}