generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
30 lines (30 loc) · 906 Bytes
/
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
{
"name": "obsidian-command-alias-plugin",
"version": "0.12.0",
"description": "This plugin is provide alias for other command. The translated words help you understand the intent of the command, but they are tedious to type.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc --noEmit --skipLibCheck && node esbuild.config.mjs production",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "MIT",
"private": true,
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"builtin-modules": "^3.3.0",
"esbuild": "^0.17.3",
"eslint": "^8.6.0",
"jest": "^27.5.0",
"obsidian": "latest",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
}
}