-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 836 Bytes
/
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
{
"name": "get-medium",
"version": "1.0.3",
"description": "easy retrieval of all articles from an account on the Medium website",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/garvsl/get-medium.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npx tsx src/index.ts",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"medum",
"articles",
"scrape",
"blog"
],
"author": "Garv",
"license": "ISC",
"dependencies": {
"axios": "^1.7.9"
},
"devDependencies": {
"typescript": "^5.7.2"
}
}