-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "obsidian-rss-flowz",
"version": "1.0.0",
"description": "Un plugin RSS avancé pour Obsidian",
"main": "main.js",
"type": "commonjs",
"keywords": [
"obsidian",
"plugin",
"rss"
],
"author": "Votre nom",
"license": "MIT",
"dependencies": {
"@extractus/feed-extractor": "^7.1.3",
"@mozilla/readability": "^0.5.0",
"builtin-modules": "^4.0.0",
"fast-xml-parser": "^4.5.1",
"linkedom": "^0.18.7"
},
"devDependencies": {
"@types/node": "^20.17.16",
"@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "7.0.1",
"appmap-node": "^2.24.3",
"esbuild": "^0.24.2",
"eslint": "8.56.0",
"obsidian": "^1.7.2",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
},
"scripts": {
"test": "vitest",
"test:watch": "vitest watch",
"test:appmap": "appmap-node vitest run",
"dev": "node --experimental-vm-modules esbuild.config.js",
"build": "node --experimental-vm-modules esbuild.config.js production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"workspaces": {
"packages": [
"."
]
}
}