-
-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.35 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 3.35 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
{
"name": "breadcrumbs",
"version": "4.14.2",
"description": "Add typed-links to your Obsidian notes",
"main": "main.js",
"scripts": {
"SOURCE": "https://stackoverflow.com/questions/70716940/using-tailwind-css-with-esbuild-the-process",
"watch:css": "bunx tailwindcss -i ./src/styles.css -o ./styles.css --watch",
"watch:esbuild": "bun run esbuild.config.mjs",
"dev": "npm-run-all2 --parallel watch:*",
"clean": "rm -f main.js styles.css",
"build:css": "bunx tailwindcss -i ./src/styles.css -o ./styles.css --minify",
"build:esbuild": "tsc -noEmit -skipLibCheck && svelte-check && bun run esbuild.config.mjs production",
"build": "bun run clean && bun run build:css && bun run build:esbuild",
"version:prod": "bun run version-bump.mjs && git add manifest.json versions.json package.json",
"version:beta": "bun run version-bump-beta.mjs && git add manifest-beta.json versions.json package.json",
"release:beta": "bun run version:beta && git commit -m 'release:beta' && git push origin master:master && git tag -a $npm_package_version -m \"$npm_package_version\" && git push --tags",
"test": "vitest --config vite.config.mjs",
"coverage:ui": "vitest run --config vite.config.mjs --coverage --coverage.include 'src/**' --coverage.reporter html && vite preview --outDir ./coverage --open",
"fmt": "bun run wasm:fmt && bun run prettier --write ./src",
"svelte-check": "svelte-check --tsconfig tsconfig.json --compiler-warnings \"unused-export-let:ignore\"",
"lint": "eslint --max-warnings=0 src/ --no-warn-ignored && bun run wasm:lint",
"wasm:postbuild": "bun scripts/wasm-postbuild.mjs",
"wasm:build": "cd wasm && wasm-pack build --target web",
"postwasm:build": "bun run wasm:postbuild",
"wasm:dev": "cd wasm && wasm-pack build --dev --target web",
"postwasm:dev": "bun run wasm:postbuild",
"wasm:profile": "cd wasm && wasm-pack build --profiling --target web",
"postwasm:profile": "bun run wasm:postbuild",
"wasm:fmt": "cd wasm && cargo fmt",
"wasm:lint": "cd wasm && cargo clippy",
"wasm:test": "cd wasm && wasm-pack test --node --features test"
},
"keywords": [],
"author": "michaelpporter",
"license": "MIT",
"engines": {
"node": ">=24"
},
"devDependencies": {
"@aidenlx/folder-note-core": "^1.3.6",
"@eslint/js": "^10.0.1",
"@tailwindcss/cli": "^4.3.0",
"@tsconfig/svelte": "^5.0.8",
"@types/luxon": "^3.7.1",
"@types/node": "^25.9.1",
"@types/obsidian-typings": "npm:obsidian-typings@^6.13.0",
"@vitest/coverage-v8": "4.1.8",
"@vitest/ui": "4.1.8",
"esbuild": "^0.28.0",
"esbuild-svelte": "^0.9.5",
"eslint": "^10.4.1",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-obsidianmd": "^0.3.0",
"eslint-plugin-only-warn": "^1.2.1",
"eslint-plugin-svelte": "^3.19.0",
"npm-run-all2": "^9.0.1",
"obsidian": "1.13.0",
"prettier": "^3.8.3",
"prettier-plugin-svelte": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.8.0",
"svelte": "^5.56.0",
"svelte-check": "4.5.0",
"svelte-preprocess": "6.0.5",
"tailwindcss": "^4.3.0",
"tslib": "2.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0",
"vite-plugin-wasm": "^3.6.0",
"vitest": "4.1.8"
},
"dependencies": {
"baseline-browser-mapping": "^2.10.33",
"caniuse-lite": "^1.0.30001793",
"lucide-svelte": "^1.0.1",
"luxon": "^3.7.2",
"markmap-lib": "^0.18.12",
"markmap-view": "^0.18.12",
"obsidian-typings": "^6.13.0",
"zod": "^4.4.3"
}
}