-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.72 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
60
61
62
63
64
{
"name": "@cielsachen/tenor-api-wrapper",
"version": "2.0.0",
"description": "A simple way to interact with the Tenor API (v2).",
"keywords": [
"api-wrapper",
"nodejs",
"tenor-api",
"tenor",
"typescript",
"wrapper"
],
"homepage": "https://github.com/CielSachen/tenor-api-wrapper#readme",
"bugs": {
"url": "https://github.com/CielSachen/tenor-api-wrapper/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/CielSachen/tenor-api-wrapper.git"
},
"license": "MIT",
"author": "CielSachen",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"directories": {
"lib": "src"
},
"files": [
"dist/"
],
"scripts": {
"build": "tsup",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepack": "pnpm run build",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^20.16.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "3.3.3",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"packageManager": "[email protected]+sha512.8e4c3550fb500e808dbc30bb0ce4dd1eb614e30b1c55245f211591ec2cdf9c611cabd34e1364b42f564bd54b3945ed0f49d61d1bbf2ec9bd74b866fcdc723276",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"publishConfig": {
"access": "restricted",
"registry": "https://npm.pkg.github.com"
}
}