-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.41 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
{
"name": "obsidian-feeds",
"version": "0.0.9",
"description": "Create feeds of topic-specific bullet points in Obsidian",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"prettier": "prettier --write 'src/**/*.+(ts|tsx|json|html|css)' 'styles.css'",
"check-format": "npx prettier --check src",
"eslint": "eslint . --ext .ts,.tsx --fix",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"version": "node version-bump.mjs && git add manifest.json versions.json package.json"
},
"author": "LukeMT, pashashocky",
"homepage": "https://github.com/lukemt/obsidian-feeds#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/lukemt/obsidian-feeds.git"
},
"keywords": [
"note",
"feed",
"plugin",
"obsidian"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.21",
"@typescript-eslint/eslint-plugin": "7.1.0",
"@typescript-eslint/parser": "7.1.0",
"builtin-modules": "3.3.0",
"esbuild": "^0.20.1",
"eslint": "^8.51.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"obsidian": "^1.5.7-1",
"obsidian-dataview": "^0.5.61",
"prettier": "^3.2.5",
"tslib": "2.6.2",
"typescript": "5.3.3"
}
}