generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
55 lines (55 loc) · 1.49 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
{
"name": "obsidian-callout-manager",
"version": "1.1.0",
"description": "An Obsidian.md plugin that makes creating and configuring callouts easy.",
"type": "module",
"exports": {
"import": "./dist/api-esm.mjs",
"require": "./dist/api-cjs.js"
},
"scripts": {
"dev": "node esbuild.config.mjs",
"test": "jest",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production && rollup -c rollup.config.mjs",
"format": "prettier -w src"
},
"keywords": [],
"author": {
"name": "eth-p",
"url": "https://github.com/eth-p"
},
"license": "MIT",
"obsidianPlugin": {
"name": "Callout Manager",
"minAppVersion": "1.0.0",
"description": "Easily create and customize callouts.",
"isDesktopOnly": false
},
"dependencies": {
"obsidian-extra": "^0.1.5"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@coderspirit/nominal": "^3.2.2",
"@rollup/plugin-typescript": "^11.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"esbuild-plugin-alias": "^0.2.1",
"jest": "^29.4.2",
"obsidian": "latest",
"obsidian-undocumented": "^0.1.2",
"rollup": "^3.14.0",
"rollup-plugin-dts": "^5.1.1",
"rollup-plugin-prettier": "^3.0.0",
"sass": "^1.58.3",
"sorcery": "^0.11.0",
"source-map": "^0.7.4",
"ts-jest": "^29.0.5",
"typescript": "4.7.4"
}
}