-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 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
48
49
50
{
"name": "pocket-sdk-typescript",
"type": "module",
"version": "0.4.0",
"description": "Simple SDK for interacting with getpocket api with TypeScript",
"main": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"files": [
"./dist/lib"
],
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.json",
"release": "npm publish && git push origin main && git push --tags"
},
"author": "Micheál Reilly Sendal",
"license": "MIT",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18.16.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"dotenv": "^16.0.3",
"eslint": "^8.39.0",
"esm": "^3.2.25",
"jest": "^29.5.0",
"open": "^9.1.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"repository": {
"type": "git",
"url": "https://github.com/mtreilly/pocket-sdk-typescript"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"pocket",
"sdk",
"typescript",
"getpocket",
"api"
]
}