generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 176
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.41 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.41 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
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
119
120
121
122
123
124
125
126
127
128
{
"name": "quickadd",
"version": "2.12.0",
"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 && node esbuild.config.mjs production",
"build-with-lint": "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 run --config vitest.config.mts --passWithNoTests",
"test:e2e": "vitest run --config vitest.e2e.config.mts"
},
"keywords": [],
"author": "Christian B. B. Houmann",
"license": "MIT",
"devDependencies": {
"@popperjs/core": "^2.11.8",
"@semantic-release/git": "^10.0.1",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/svelte": "^4.2.3",
"@types/node": "24.0.12",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.25.6",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-svelte": "^0.9.3",
"eslint": "^9.30.1",
"globals": "^16.3.0",
"jsdom": "^26.1.0",
"obsidian": "1.11.4",
"obsidian-dataview": "^0.5.68",
"obsidian-e2e": "0.6.0",
"semantic-release": "^24.2.6",
"svelte": "^4.2.19",
"svelte-check": "^3.8.6",
"svelte-dnd-action": "0.9.63",
"svelte-preprocess": "^6.0.3",
"three-way-merge": "^0.1.0",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"uuid": "11.1.0",
"vite": "^7.0.3",
"vitest": "^3.2.4"
},
"dependencies": {
"builtin-modules": "^5.0.0",
"chrono-node": "^2.8.3",
"fuse.js": "7.1.0",
"js-tiktoken": "^1.0.20",
"zustand": "^5.0.6"
},
"repository": {
"type": "git",
"url": "https://github.com/chhoumann/quickadd.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"tagFormat": "${version}",
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "chore",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"./scripts/release/docs-versioning-plugin.cjs",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json",
"manifest.json",
"versions.json",
"docs/versions.json",
"docs/versioned_docs/**/*",
"docs/versioned_sidebars/*.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"
}
]
}
]
]
}
}