-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.44 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.44 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
{
"author": "PLACEHOLDER",
"bugs": {
"url": "PLACEHOLDER"
},
"dependencies": {
"@polyipseity/obsidian-plugin-library": "file:./vendor/obsidian-plugin-library",
"i18next": "^25.8.13",
"lodash-es": "^4.17.23",
"obsidian": "~1.4.11",
"semver": "^7.7.4",
"ts-essentials": "^10.1.1"
},
"description": "PLACEHOLDER",
"devDependencies": {
"@j178/prek": "^0.4.5",
"@changesets/cli": "^2.29.8",
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@eslint/compat": "^2.0.2",
"@eslint/js": "^10.0.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^25.3.3",
"@types/semver": "^7.7.1",
"@vitest/coverage-istanbul": "^4.1.6",
"builtin-modules": "^5.2.0",
"esbuild": "^0.27.3",
"esbuild-compress": "^2.2.0",
"esbuild-plugin-globals": "^0.2.0",
"esbuild-plugin-text-replace": "^1.3.0",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.4.0",
"happy-dom": "^20.7.0",
"if-ci": "^3.0.0",
"markdownlint-cli2": "^0.21.0",
"p-lazy": "^5.0.0",
"prettier": "^3.2.5",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18",
"yaml": "^2.8.2"
},
"files": [
"main.js",
"manifest.json",
"styles.css"
],
"funding": [
{
"type": "PLACEHOLDER",
"url": "PLACEHOLDER"
}
],
"homepage": "PLACEHOLDER",
"keywords": [
"PLACEHOLDER",
"obsidian",
"obsidian-plugin",
"plugin"
],
"license": "MIT",
"main": "main.js",
"name": "PLACEHOLDER",
"obsidian": {
"authorUrl": "PLACEHOLDER",
"id": "PLACEHOLDER",
"isDesktopOnly": false,
"minAppVersion": "1.4.11",
"name": "PLACEHOLDER"
},
"overrides": {},
"packageManager": "bun@1.3.10",
"private": true,
"repository": {
"type": "git",
"url": "PLACEHOLDER"
},
"scripts": {
"build": "bun run check && bun run build:force",
"build:dev": "bun run build:force -- dev",
"build:force": "node scripts/build.mjs",
"check": "bun run check:eslint && bun run check:md && bun run check:prettier",
"check:eslint": "eslint --cache --max-warnings=0",
"check:md": "markdownlint-cli2",
"check:prettier": "prettier --cache --check \"**/*.{astro,cjs,css,csv,gql,graphql,hbs,html,js,jsx,json,json5,jsonc,jsonl,less,mjs,pcss,sass,scss,svelte,styl,ts,tsx,vue,xml,yaml,yml}\"",
"commitlint": "commitlint --from=origin/main --to=HEAD",
"format": "bun run format:eslint && bun run format:md && bun run format:prettier",
"format:eslint": "eslint --cache --fix",
"format:md": "markdownlint-cli2 --fix",
"format:prettier": "prettier --cache --write \"**/*.{astro,cjs,css,csv,gql,graphql,hbs,html,js,jsx,json,json5,jsonc,jsonl,less,mjs,pcss,sass,scss,svelte,styl,ts,tsx,vue,xml,yaml,yml}\"",
"obsidian:install": "bun run build && node scripts/obsidian-install.mjs",
"obsidian:install:force": "bun run build:force && node scripts/obsidian-install.mjs",
"postinstall": "cd vendor/obsidian-plugin-library && bun install --frozen-lockfile --ignore-scripts && bun run build:force && cd ../..",
"prepare": "bun x --package if-ci -- if-not-ci prek install",
"test": "bun run test:vitest",
"test:vitest": "vitest run --coverage",
"test:watch": "vitest",
"version": "node scripts/version.mjs"
},
"sideEffects": false,
"style": "styles.css",
"type": "module",
"version": "0.0.0",
"workspaces": [
"."
]
}