-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 780 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 780 Bytes
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
{
"name": "instapaper-ts",
"version": "1.1.3",
"type": "module",
"description": "A type-safe API client for Instapaper.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch"
},
"keywords": [
"instapaper",
"read",
"later",
"typescript",
"library"
],
"author": "Ben Silverman (bensilverman.co.uk)",
"homepage": "https://github.com/benslv/instapaper-ts",
"bugs": {
"url": "https://github.com/benslv/instapaper-ts/issues"
},
"license": "MIT",
"packageManager": "pnpm@10.4.1",
"dependencies": {
"oauth-1.0a": "^2.2.6"
},
"devDependencies": {
"@types/node": "^22.13.5",
"tsup": "^8.4.0",
"typescript": "^5.8.2"
}
}