-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.26 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
{
"name": "imgflip",
"version": "4.0.0",
"author": {
"name": "Tomer Aberbach",
"email": "tomer@aberba.ch",
"url": "https://tomeraberba.ch"
},
"description": "The memiest Imgflip API wrapper around!",
"keywords": [
"imgflip",
"meme",
"api",
"images",
"promise",
"meme-generator"
],
"homepage": "https://github.com/TomerAberbach/imgflip",
"repository": "TomerAberbach/imgflip",
"bugs": {
"url": "https://github.com/TomerAberbach/imgflip/issues"
},
"license": "MIT",
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"engines": {
"node": ">= 18"
},
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"scripts": {
"prepare": "tomer install",
"format": "tomer format",
"lint": "tomer lint",
"typecheck": "tomer typecheck",
"build": "tomer build",
"clean": "tomer clean dist",
"prepublishOnly": "tomer build"
},
"prettier": "tomer/prettier",
"dependencies": {
"got": "^14.2.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"tomer": "^3.2.0",
"typescript": "^5.4.5"
}
}