-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
90 lines (90 loc) · 3.11 KB
/
package.json
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
{
"name": "slides-extended",
"version": "2.1.9",
"description": "Create markdown-based presentations with reveal.js in Obsidian",
"author": "Erin Schnabel",
"license": "MIT",
"homepage": "https://github.com/ebullient",
"main": "src/main.ts",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "node esbuild.config.mjs",
"build": "npx @biomejs/biome check ./src && node esbuild.config.mjs production",
"fix": "npx @biomejs/biome check --write ./src",
"format": "npx @biomejs/biome format ./src",
"lint": "npx @biomejs/biome lint ./src",
"test": "jest",
"coverage": "jest --coverage",
"preversion": "pnpm run test && node esbuild.config.mjs production",
"version": "auto-changelog -p",
"brat-notes": "run() { auto-changelog --stdout --hide-credit --hide-empty-releases --template .github/changelog.hbs -v $1 --starting-version $1 > release-notes.md; }; run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ebullient/obsidian-theme-ebullientworks.git"
},
"bugs": {
"url": "https://github.com/ebullient/obsidian-theme-ebullientworks/issues"
},
"auto-changelog": {
"backfillLimit": false,
"commitLimit": false,
"ignoreCommitPattern": "(🔖|👷|changelog|.* README\\.).*",
"startingDate": "2024-02-17"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@fortawesome/fontawesome-free": "^6.7.2",
"@popperjs/core": "^2.11.8",
"@types/color": "^4.2.0",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.14",
"@types/mustache": "^4.2.5",
"@types/node": "^22.13.4",
"@types/request": "^2.48.12",
"@types/yaml-front-matter": "^4.1.3",
"auto-changelog": "^2.5.0",
"builtin-modules": "^4.0.0",
"dotenv": "^16.4.7",
"esbuild": "^0.25.0",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-sass-plugin": "^3.3.1",
"highlight.js": "^11.11.1",
"jest": "^29.7.0",
"mathjax": "^3.2.2",
"obsidian": "^1.7.2",
"obsidian-utilities": "^1.1.5",
"reveal.js": "^5.1.0",
"reveal.js-menu": "^2.1.0",
"reveal.js-mermaid-plugin": "^2.3.0",
"reveal.js-plugins": "^4.2.5",
"reveal.js-pointer": "^0.1.4",
"sass": "^1.85.0",
"ts-jest": "^29.2.5",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.7.3"
},
"dependencies": {
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.36.2",
"@fastify/static": "^7.0.4",
"@types/js-yaml": "^4.0.9",
"chart.js": "^4.4.7",
"color": "^4.2.3",
"fastify": "^4.29.0",
"fs-extra": "^11.3.0",
"glob": "11.0.1",
"js-yaml": "^4.1.0",
"jszip": "^3.10.1",
"mustache": "^4.2.0",
"yaml-front-matter": "^4.1.1"
},
"resolutions": {
"glob": "11.0.1",
"iconv-lite": "0.6.3",
"raw-body": "2.5.2"
}
}