-
-
Notifications
You must be signed in to change notification settings - Fork 189
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.18 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
{
"name": "quickadd",
"version": "2.19.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": "obsidian-e2e run",
"provision:e2e-vault": "obsidian-e2e provision",
"start:e2e-obsidian": "obsidian-e2e start",
"stop:e2e-obsidian": "obsidian-e2e stop",
"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": {
"@sveltejs/vite-plugin-svelte": "^7.2.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.4.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^26.1.1",
"@typescript-eslint/eslint-plugin": "^8.63.0",
"@typescript-eslint/parser": "^8.63.0",
"@vitest/coverage-v8": "4.1.10",
"esbuild": "^0.28.1",
"esbuild-svelte": "^0.9.5",
"eslint": "10",
"eslint-plugin-svelte": "^3.20.0",
"globals": "17",
"jsdom": "29",
"moment": "2.30.1",
"obsidian": "1.13.1",
"obsidian-e2e": "^0.9.0",
"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.1.4",
"vitest": "^4.1.10"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"chrono-node": "^2.10.0",
"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"
},
"engines": {
"node": ">=20.18.1"
},
"packageManager": "pnpm@10.32.1",
"pnpm": {
"onlyBuiltDependencies": [
"@codemirror/language",
"esbuild"
],
"overrides": {
"obsidian-calendar-ui>svelte": "^5.56.3",
"jsdom>undici": "7.28.0"
}
}
}