forked from akaalias/obsidian-footnotes
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.25 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
{
"name": "obsidian-footnotes",
"version": "0.1.3",
"description": "",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit && node esbuild.config.mjs production",
"lint": "eslint src",
"knip": "knip",
"mutation": "cross-env FC_NUM_RUNS=25 stryker run",
"test": "vitest",
"test:smoke": "node scripts/smoke-test.mjs",
"version": "node scripts/version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "",
"license": "MIT",
"knip": {
"ignore": ["vitest.stryker.config.ts"]
},
"devDependencies": {
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@types/node": "^22.20.1",
"@vitest/coverage-v8": "^4.1.10",
"cross-env": "^10.1.0",
"esbuild": "^0.25.0",
"eslint": "^9.39.5",
"eslint-plugin-obsidianmd": "^0.4.1",
"fast-check": "^4.9.0",
"knip": "^6.32.1",
"mdast-util-from-markdown": "^2.0.3",
"mdast-util-gfm-footnote": "^2.1.0",
"mdast-util-math": "^3.0.0",
"micromark-extension-gfm-footnote": "^2.1.0",
"micromark-extension-math": "^3.1.0",
"obsidian": "^1.13.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.64.0",
"vitest": "^4.1.10"
}
}