-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.29 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.29 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
{
"name": "better-embedded-canvas",
"version": "0.2.3",
"description": "Give your embedded canvas better display and interactivity.",
"main": "main.js",
"scripts": {
"dev": "npx tsx scripts/esbuild.config.mts",
"dev:styles": "npx tsx scripts/sass.config.mts",
"build": "tsc -noEmit -skipLibCheck && npx tsx scripts/esbuild.config.mts production",
"build:styles": "npx tsx scripts/sass.config.mts production",
"version": "npx tsx scripts/version-bump.mts",
"changelog": "npx tsx scripts/print-changelog.mts",
"publish": "npx tsx scripts/publish.mts",
"publish:no-package-lock": "npx tsx scripts/publish.mts no-package-lock",
"lock": "npx tsx scripts/lock-package.mts",
"lock:no-push": "npx tsx scripts/lock-package.mts no-push"
},
"keywords": [
"obsidian-plugin"
],
"author": "Kotaindah55 (Sheva Ihza)",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^24.12.4",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"esbuild": "^0.28.0",
"eslint-plugin-jsdoc": "^63.0.0",
"eslint-plugin-obsidianmd": "^0.3.0",
"i18next": "^26.2.0",
"obsidian": "latest",
"sass": "^1.100.0",
"tsx": "^4.20.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4"
},
"dependencies": {
"monkey-around": "3.0.0"
}
}