generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.4 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
{
"name": "create-note-in-folder",
"version": "1.12.4",
"description": "Add commands to create a note in a specific folder.",
"main": "main.js",
"private": true,
"scripts": {
"prebuild": "tsc --noEmit --skipLibCheck",
"build": "node esbuild.config.mjs --production",
"dev:prod": "node esbuild.config.mjs --vault",
"dev": "node esbuild.config.mjs",
"export": "node esbuild.config.mjs --production --vault",
"bump": "node commit-and-tag-version.mjs",
"postbump": "git push --follow-tags origin master",
"lint": "bun biome format --write src/"
},
"commit-and-tag-version": {
"t": ""
},
"keywords": [],
"author": "Mara-Li",
"license": "GNU General Public License v3.0",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/electron": "npm:@ophidian/electron-types@^24.3.1",
"@types/node": "^20.14.10",
"@types/obsidian-typings": "npm:obsidian-typings@^1.1.6",
"ansi-colors": "^4.1.3",
"builtin-modules": "4.0.0",
"commander": "^12.1.0",
"commit-and-tag-version": "^12.4.1",
"cross-env": "^7.0.3",
"dedent": "^1.5.3",
"dotenv": "^16.4.5",
"esbuild": "0.23.0",
"eslint": "^9.6.0",
"klona": "^2.0.6",
"obsidian": "1.5.7-1",
"tslib": "^2.6.3",
"typescript": "^5.5.3"
},
"dependencies": {
"i18next": "^23.11.5",
"ts-deepmerge": "^7.0.0"
},
"trustedDependencies": [
"@biomejs/biome"
]
}