-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.48 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
{
"name": "miniflux-js",
"version": "0.0.7",
"type": "module",
"description": "A javascript SDK for Miniflux.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=18.12.0"
},
"sideEffects": false,
"scripts": {
"build": "pkgroll",
"build:docs": "typedoc --out docs src/index.ts --plugin typedoc-material-theme --themeColor '#cb9820'",
"dev": "pkgroll --watch",
"test": "vitest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"prepublishOnly": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sevichecc/miniflux-js.git"
},
"keywords": [
"Miniflux",
"SDK",
"API",
"RSS",
"Feed"
],
"author": "Sevi.C",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sevichecc/miniflux-js/issues"
},
"homepage": "https://github.com/Sevichecc/miniflux-js#readme",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/node": "^22.10.1",
"dotenv": "^16.4.5",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"pkgroll": "^2.5.1",
"prettier": "^3.4.1",
"typedoc": "^0.27.0",
"typedoc-material-theme": "^1.2.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.16.0",
"vitest": "^2.1.3"
},
"pkgroll": {
"minify": true,
"treeshake": true
}
}