generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
68 lines (68 loc) · 2.24 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
{
"name": "obsidian-sample-plugin",
"version": "3.2.1",
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"check-types": "tsc --noemit",
"lint": "eslint ./src",
"lint:fix": "eslint ./src/**/* --fix",
"prettier": "prettier --write \"./src/**/*.{ts,tsx}\"",
"clean": "yarn prettier && yarn lint:fix",
"test": "jest",
"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 manifest.json versions.json package.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": {
"@babel/core": "7.22.5",
"@babel/preset-env": "7.22.5",
"@babel/preset-typescript": "7.22.5",
"@codemirror/language": "https://github.com/lishid/cm-language",
"@trivago/prettier-plugin-sort-imports": "4.1.1",
"@types/download": "8.0.2",
"@types/jest": "29.5.2",
"@types/lru-cache": "^7.10.10",
"@types/node": "20.3.3",
"@types/nunjucks": "3.2.3",
"@types/react-dom": "18.2.6",
"@types/which": "^3.0.0",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"babel-jest": "29.5.0",
"builtin-modules": "3.3.0",
"cross-env": "7.0.3",
"esbuild": "0.18.11",
"escape-string-regexp": "^5.0.0",
"eslint": "8.44.0",
"eslint-plugin-react": "7.32.2",
"import-sort-cli": "6.0.0",
"import-sort-style-module-alias": "1.1.0",
"jest": "29.5.0",
"moment": "2.29.4",
"obsidian": "1.2.8",
"prettier": "2.8.8",
"tslib": "2.6.0",
"typescript": "5.1.6",
"xml-js": "1.6.11"
},
"dependencies": {
"download": "8.0.0",
"escape-path-with-spaces": "1.0.2",
"execa": "7.1.1",
"fuse.js": "6.6.2",
"nunjucks": "3.2.4",
"preact": "10.15.1",
"react": "npm:@preact/compat",
"react-dom": "npm:@preact/compat",
"react-json-tree": "0.18.0",
"react-select": "5.7.3",
"shell-path": "^3.0.0",
"which": "^3.0.1"
}
}