-
-
Notifications
You must be signed in to change notification settings - Fork 187
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 3.74 KB
/
Copy pathpackage.json
File metadata and controls
133 lines (133 loc) · 3.74 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
129
130
131
132
133
{
"name": "quickadd",
"version": "2.13.1",
"description": "Quickly add new pages or content to your vault.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"lint": "eslint .",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"build-with-lint": "tsc -noEmit -skipLibCheck && pnpm lint && node esbuild.config.mjs production",
"check": "svelte-check --threshold error",
"obsidian:e2e": "node scripts/obsidian-e2e-cli.mjs",
"provision:e2e-vault": "node scripts/provision-obsidian-e2e-vault.mjs",
"start:e2e-obsidian": "node scripts/start-obsidian-e2e-instance.mjs",
"stop:e2e-obsidian": "node scripts/stop-obsidian-e2e-instance.mjs",
"test": "vitest run --config vitest.config.mts --passWithNoTests",
"test:coverage": "vitest run --config vitest.config.mts --coverage",
"test:e2e": "vitest run --config vitest.e2e.config.mts"
},
"keywords": [],
"author": "Christian B. B. Houmann",
"license": "MIT",
"devDependencies": {
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.9.3",
"@typescript-eslint/eslint-plugin": "^8.61.1",
"@typescript-eslint/parser": "^8.61.1",
"@vitest/coverage-v8": "4.1.9",
"esbuild": "^0.28.1",
"esbuild-svelte": "^0.9.5",
"eslint": "10",
"eslint-plugin-svelte": "^3.19.0",
"globals": "17",
"jsdom": "29",
"moment": "2.29.4",
"obsidian": "1.13.1",
"obsidian-e2e": "0.6.0",
"semantic-release": "^25.0.5",
"svelte": "^5",
"svelte-check": "^4",
"svelte-eslint-parser": "^1.8.0",
"svelte-preprocess": "^6.0.5",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.9"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"chrono-node": "^2.9.1",
"fuse.js": "7",
"obsidian-dataview": "^0.5.68",
"svelte-dnd-action": "0.9.70",
"three-way-merge": "^0.1.0",
"uuid": "14",
"zustand": "^5.0.14"
},
"repository": {
"type": "git",
"url": "https://github.com/chhoumann/quickadd.git"
},
"packageManager": "pnpm@10.32.1",
"pnpm": {
"onlyBuiltDependencies": [
"@codemirror/language",
"esbuild"
],
"overrides": {
"obsidian-calendar-ui>svelte": "^5.56.3"
}
},
"release": {
"tagFormat": "${version}",
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/exec",
{
"prepareCmd": "node version-bump.mjs ${nextRelease.version}"
}
],
"./scripts/release/docs-versioning-plugin.cjs",
[
"@semantic-release/git",
{
"assets": [
"package.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"
}
]
}
]
]
}
}