generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
46 lines (46 loc) · 1.39 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
{
"name": "Editing Toolbar",
"version": "2.0.4",
"description": "The Editing Toolbar is modified from cmenu, which provides more powerful customization settings and has many built-in editing commands to be a MS Word-like toolbar editing experience.",
"main": "main.js",
"repository": "https://github.com/cumany/obsidian-editing-toolbar",
"scripts": {
"dev": "rollup --config rollup.config.js -w",
"build": "rollup --config rollup.config.js --environment BUILD:production"
},
"keywords": [],
"author": "Cuman",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.5.0",
"@types/feather-icons": "^4.7.0",
"@types/node": "^14.17.6",
"@types/react-dom": "^17.0.9",
"@types/sortablejs": "^1.10.7",
"eslint-plugin-react": "^7.31.8",
"obsidian": "^0.15.9",
"rollup": "^2.56.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-watch": "^4.3.1",
"tslib": "^2.2.0",
"typescript": "^4.4.2",
"typings": "^2.1.1"
},
"moduleFileExtensions": [
"js",
"ts"
],
"dependencies": {
"@simonwep/pickr": "^1.8.2",
"feather-icons": "^4.28.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dom-server": "0.0.5",
"react-icons": "^4.2.0",
"remixicon": "^2.5.0",
"sortablejs": "^1.14.0",
"terser": "^5.15.0"
}
}