forked from joethei/obsidian-rss
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.5 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
{
"name": "rss-reader",
"version": "1.1.0",
"description": "Read RSS Feeds from inside obsidian",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"lint": "eslint . --ext .ts",
"lint-css": "stylelint styles.css",
"test": "mocha"
},
"keywords": [],
"author": "Johannes Theiner",
"license": "GPL-3.0",
"devDependencies": {
"@popperjs/core": "^2.10.2",
"@types/chai": "^4.3.0",
"@types/lodash.groupby": "^4.6.6",
"@types/lodash.keyby": "^4.6.6",
"@types/lodash.mergewith": "^4.6.6",
"@types/lodash.sortby": "^4.7.6",
"@types/lodash.values": "^4.3.6",
"@types/mocha": "^9.0.0",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chai": "^4.3.4",
"esbuild": "0.13.15",
"esbuild-svelte": "^0.6.0",
"eslint": "^7.32.0",
"jsdom": "^19.0.0",
"jsdom-global": "^3.0.2",
"lodash.groupby": "^4.6.0",
"lodash.keyby": "^4.6.0",
"lodash.mergewith": "^4.6.2",
"lodash.sortby": "^4.7.0",
"lodash.values": "^4.3.0",
"mocha": "^9.1.3",
"obsidian": "^0.12.17",
"obsidian-community-lib": "1.2.0",
"obsimian": "^0.4.0",
"stylelint": "^14.1.0",
"stylelint-config-standard": "^24.0.0",
"svelte": "^3.43.1",
"svelte-preprocess": "^4.9.8",
"ts-md5": "^1.2.10",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typescript": "^4.2.4",
"tslib": "^2.3.1"
}
}