generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
102 lines (102 loc) · 2.5 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "podnotes",
"version": "2.13.4",
"description": "Helps you write notes on podcasts.",
"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",
"semantic-release": "semantic-release",
"test": "vitest"
},
"keywords": [],
"author": "Christian Bager Bach Houmann",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@semantic-release/git": "^10.0.1",
"@sveltejs/vite-plugin-svelte": "^1.1.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/svelte": "^3.2.2",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "0.14.47",
"esbuild-svelte": "^0.7.1",
"jsdom": "^20.0.2",
"obsidian": "latest",
"semantic-release": "^19.0.3",
"svelte": "^3.48.0",
"svelte-preprocess": "^4.10.7",
"tslib": "2.4.0",
"typescript": "4.7.4",
"vite": "^3.2.3",
"vitest": "^0.25.0"
},
"repository": {
"type": "git",
"url": "https://github.com/chhoumann/PodNotes.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"tagFormat": "${version}",
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "chore",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json",
"manifest.json",
"versions.json"
],
"message": "release(version): Release ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "main.js",
"label": "main.js"
},
{
"path": "manifest.json",
"label": "manifest.json"
}
]
}
]
]
},
"dependencies": {
"fuse.js": "^6.6.2",
"openai": "^4.52.7"
}
}