generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 142
/
package.json
118 lines (118 loc) · 3.04 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "quickadd",
"version": "1.11.5",
"description": "Quickly add new pages or content to your vault.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"lint": "eslint --ext .ts .",
"build": "tsc -noEmit -skipLibCheck && bun lint && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"semantic-release": "semantic-release",
"test": "vitest --passWithNoTests"
},
"keywords": [],
"author": "Christian B. B. Houmann",
"license": "MIT",
"devDependencies": {
"@fortawesome/free-regular-svg-icons": "6.4.0",
"@fortawesome/free-solid-svg-icons": "6.4.0",
"@popperjs/core": "^2.11.7",
"@semantic-release/git": "^10.0.1",
"@sveltejs/vite-plugin-svelte": "^2.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/svelte": "^3.2.2",
"@types/node": "20.1.7",
"@types/uuid": "9.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.17.19",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-svelte": "^0.7.3",
"eslint": "^8.40.0",
"jsdom": "^22.0.0",
"obsidian": "^1.5.7-1",
"semantic-release": "^21.0.2",
"svelte": "^3.59.1",
"svelte-awesome": "3.2.0",
"svelte-check": "^3.3.2",
"svelte-dnd-action": "0.9.22",
"svelte-preprocess": "^5.0.3",
"three-way-merge": "^0.1.0",
"tslib": "^2.5.0",
"typescript": "^5.0.4",
"uuid": "9.0.0",
"vite": "^4.3.7",
"vitest": "^0.31.0"
},
"dependencies": {
"builtin-modules": "^3.3.0",
"fuse.js": "6.6.2",
"js-tiktoken": "^1.0.6",
"zustand": "^4.3.8"
},
"repository": {
"type": "git",
"url": "https://github.com/chhoumann/quickadd.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"
},
{
"path": "styles.css",
"label": "styles.css"
}
]
}
]
]
}
}