generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 196
/
package.json
90 lines (90 loc) · 2.91 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
87
88
89
90
{
"name": "obsidian-kanban",
"version": "2.0.51",
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
"main": "main.js",
"scripts": {
"typecheck": "tsc --noemit",
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"lint": "eslint ./src/**/*.{ts,tsx}",
"lint:fix": "eslint ./src/**/*.{ts,tsx} --fix",
"prettier": "prettier --write \"./src/**/*.{ts,tsx}\"",
"clean": "yarn prettier && yarn lint:fix",
"rlnotes": "git log $(git describe --tags --abbrev=0)..HEAD --oneline > release-notes.md && git add release-notes.md",
"bump": "node version-bump.mjs && git add package.json manifest.json versions.json && yarn rlnotes",
"release": "git commit -m $npm_package_version && git tag $npm_package_version && git push && git push --tags"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@codemirror/commands": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/box-intersect": "^1.0.0",
"@types/mark.js": "^8.11.5",
"@types/node": "^14.14.37",
"@types/raf-schd": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"builtin-modules": "^3.3.0",
"esbuild": "^0.19.11",
"esbuild-plugin-less": "^1.3.1",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"magic-string": "^0.30.10",
"obsidian": "^1.5.7-1",
"obsidian-dataview": "^0.5.66",
"obsidian-plugin-cli": "^0.9.0",
"prettier": "^3.1.1",
"replace": "^1.2.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@tanstack/match-sorter-utils": "^8.15.1",
"@tanstack/react-table": "^8.11.2",
"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": "^5.0.1",
"fast-json-patch": "^3.1.0",
"file-selector": "^0.2.4",
"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",
"react-fast-compare": "^3.2.2",
"rrule": "^2.8.1",
"unist-util-visit": "^4.1.0"
},
"importSort": {
".js, .ts, .tsx": {
"style": "module-alias",
"options": {
"alias": [
"src"
]
}
}
}
}