forked from mgmeyers/obsidian-kanban
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.59 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "obsidian-sample-plugin",
"version": "0.11.13",
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
"main": "main.js",
"scripts": {
"check-types": "tsc --noemit",
"dev": "cross-env BUILD=dev obsidian-plugin dev src/main.ts",
"build": "yarn release",
"release": "cross-env BUILD=production obsidian-plugin build src/main.ts",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"sort-imports": "import-sort --write \"./src/**/*.{ts,tsx}\"",
"prettier": "prettier --write \"./src/**/*.{ts,tsx}\"",
"clean": "yarn prettier && yarn lint:fix"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@types/box-intersect": "^1.0.0",
"@types/insert-text-at-cursor": "^0.3.0",
"@types/mark.js": "^8.11.5",
"@types/node": "^14.14.37",
"@types/raf-schd": "^4.0.1",
"@types/textarea-caret": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"cross-env": "^7",
"esbuild-plugin-less": "^1.1.9",
"eslint": "^8.5.0",
"eslint-plugin-react": "^7.24.0",
"import-sort-cli": "^6.0.0",
"import-sort-style-module-alias": "^1.1.0",
"obsidian": "^0.15.3",
"obsidian-dataview": "^0.4.21",
"obsidian-plugin-cli": "^0.8.1",
"prettier": "^2.3.2",
"replace": "^1.2.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"dependencies": {
"animated-scroll-to": "^2.2.0",
"box-intersect": "^1.0.2",
"choices.js": "9.0.1",
"classcat": "^5.0.3",
"colord": "^2.9.3",
"deepmerge": "^4.2.2",
"eventemitter3": "^4.0.7",
"fast-json-patch": "^3.1.0",
"file-selector": "^0.2.4",
"fuse.js": "^6.5.3",
"immutability-helper": "^3.1.1",
"immutable-json-patch": "^1.1.2",
"is-plain-object": "^5.0.0",
"mark.js": "^8.11.1",
"mdast": "^3.0.0",
"mdast-util-from-markdown": "^1.0.2",
"mdast-util-frontmatter": "^1.0.0",
"mdast-util-to-markdown": "^1.2.6",
"mdast-util-to-string": "^3.1.0",
"micromark-util-character": "^1.1.0",
"micromark-util-types": "^1.0.1",
"monkey-around": "^2.1.0",
"obsidian-daily-notes-interface": "^0.9.4",
"preact": "^10.8.2",
"react": "npm:@preact/compat",
"react-colorful": "^5.6.1",
"react-cool-onclickoutside": "^1.6.1",
"react-dom": "npm:@preact/compat",
"unist-util-visit": "^4.1.0"
},
"importSort": {
".js, .ts, .tsx": {
"style": "module-alias",
"options": {
"alias": [
"src"
]
}
}
}
}