generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
58 lines (58 loc) · 2 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
56
57
58
{
"name": "obsidian-react-components",
"version": "0.1.6",
"description": "This is a plugin for Obsidian (https://obsidian.md). It allows you to write and use React components with Jsx inside your Obsidian notes.",
"main": "src/main.js",
"scripts": {
"prettier-format": "prettier --config .prettierrc.js src/*.tsx --write",
"lint": "eslint . --ext .ts,.tsx",
"dev": "rollup --config rollup.config.js -w",
"build": "rollup --config rollup.config.js --environment BUILD:production"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@codemirror/commands": "^0.19.0",
"@codemirror/fold": "0.19.0",
"@codemirror/history": "^0.19.0",
"@codemirror/language": "^0.19.0",
"@codemirror/matchbrackets": "^0.19.0",
"@codemirror/panel": "^0.19.0",
"@codemirror/rangeset": "^0.19.0",
"@codemirror/search": "^0.19.0",
"@codemirror/state": "^0.19.0",
"@codemirror/stream-parser": "https://github.com/lishid/stream-parser",
"@codemirror/view": "^0.19.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"obsidian": "0.13.8",
"prettier": "^2.2.1",
"rollup": "^2.32.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-polyfill-node": "^0.6.2",
"tslib": "2.3.1",
"typescript": "4.4.4"
},
"dependencies": {
"@babel/standalone": "^7.14.0",
"@rollup/plugin-json": "^4.1.0",
"@types/babel__standalone": "^7.1.3",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.3",
"@types/styled-components": "^5.1.9",
"change-case": "^4.1.2",
"is-var-name": "^2.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup-plugin-import-css": "^2.0.1"
}
}