-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.4 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.4 KB
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
{
"name": "rss-tracker",
"version": "0.3.0",
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
"type": "module",
"main": "dist/main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"api": "tsc -skipLibCheck && npx api-extractor run --local && npx api-documenter markdown -i temp -o api/docs",
"build": "tsc -skipLibCheck && node esbuild.config.mjs production",
"dist": "npm run build && npm run prep-test && node dist.mjs",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"prep-test": "npx tsc src/FeedAssembler.ts --module esnext --moduleResolution node --isolatedModules true --importHelpers true --allowJS true --target esnext --outDir test/scripts",
"test": "mocha"
},
"keywords": [],
"author": "@WetHat",
"license": "MIT",
"devDependencies": {
"@microsoft/api-documenter": "^7.26.26",
"@microsoft/api-extractor": "^7.52.7",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"diff": "^5.2.0",
"esbuild": "0.25.0",
"fs-extra": "^11.2.0",
"glob": "^10.4.1",
"json-diff": "^1.0.6",
"mocha": "^10.4.0",
"node-fetch": "^3.3.2",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"@extractus/article-extractor": "^8.0.19",
"@extractus/feed-extractor": "^7.1.3",
"entities": "^4.5.0"
}
}