generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
55 lines (55 loc) · 1.26 KB
/
package.json
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
{
"name": "metadata-extractor",
"version": "1.1.0",
"description": "Plugin that extracts metadata and saves it in JSON format",
"main": "src/main.ts",
"scripts": {
"dev": "cross-env BUILD=dev node esbuild.mjs",
"build": "cross-env BUILD=production node esbuild.mjs",
"release": "standard-version",
"test": "jest",
"format": "npx prettier --write src/"
},
"standard-version": {
"t": "",
"types": [
{
"type": "perf",
"hidden": false,
"section": "Performance"
},
{
"type": "feat",
"hidden": false,
"section": "Features"
},
{
"type": "fix",
"hidden": false,
"section": "Bug Fixes"
}
],
"releaseCommitMessageFormat": "Metadata Extractor: {{currentTag}}"
},
"keywords": [],
"author": "kometenstaub",
"license": "MIT",
"devDependencies": {
"@types/eslint": "^8.4.10",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"cross-env": "^7.0.3",
"esbuild": "0.16.10",
"esbuild-plugin-inline-worker": "^0.1.1",
"eslint": "^8.30.0",
"jest": "^29.3.1",
"obsidian": "^1.1.1",
"prettier": "2.8.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.3",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
}
}