-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"name": "@josh-uvi/newsapi-client",
"version": "1.0.7",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"lint": "tsc",
"build": "tsup src/index.ts --format cjs,esm --dts",
"test": "jest",
"cleanup": "rimraf dist",
"bumpVersion": "npm --no-git-tag-version version patch"
},
"keywords": [
"NewsAPI",
"Node",
"Package",
"Typescript",
"Jest"
],
"author": "Josh Uvi",
"repository": {
"url": "git+https://github.com/Josh-Uvi/newsapi-client.git"
},
"license": "ISC",
"publishConfig": {
"registry": "https://npm.pkg.github.com/@josh-uvi"
},
"files": [
"./dist"
],
"description": "NewsAPI Client is a TypeScript-based client for interacting with the NewsAPI service. It simplifies fetching news articles, top headlines, and news sources while handling API errors gracefully.",
"dependencies": {
"axios": "^1.7.7"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
}
}