generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
67 lines (67 loc) · 1.93 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
{
"name": "rss-reader",
"version": "1.3.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 src/style/main.scss",
"test": "jest --coverage",
"test:watch": "jest --watch --coverage"
},
"keywords": [],
"author": "Johannes Theiner",
"license": "GPL-3.0",
"devDependencies": {
"@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",
"builtin-modules": "^3.3.0",
"esbuild": "0.13.15",
"esbuild-svelte": "^0.6.0",
"eslint": "^7.32.0",
"isomorphic-fetch": "3.0.0",
"jest": "27.5.1",
"jest-teamcity-reporter": "0.9.0",
"jsdom": "^19.0.0",
"process": "^0.11.10",
"stylelint": "^14.1.0",
"ts-jest": "27.1.4",
"tslib": "^2.3.1",
"tslint": "^6.1.3",
"typescript": "^4.2.4",
"sass": "1.53.0",
"stylelint-scss": "4.3.0",
"stylelint-config-standard": "26.0.0",
"stylelint-config-standard-scss": "5.0.0",
"postcss": "8.4.14",
"autoprefixer": "10.4.7",
"cssnano": "5.1.12",
"cssnano-preset-default": "5.2.12",
"svelte-preprocess": "^4.9.8"
},
"dependencies": {
"@popperjs/core": "^2.10.2",
"@types/nunjucks": "^3.2.1",
"@vanakat/plugin-api": "0.1.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",
"nunjucks": "3.2.3",
"obsidian": "0.16.3",
"svelte": "^3.43.1",
"ts-md5": "^1.2.10",
"ts-node": "^10.4.0"
}
}