This repository was archived by the owner on Dec 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.34 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.34 KB
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
{
"name": "somerandomapi.js",
"version": "1.6.0",
"description": "Unofficial API wrapper for Some Random API (with updated endpoints and docs)",
"main": "dist/index.js",
"scripts": {
"test": "node test/index.js",
"eslint": "eslint --fix \"**/*.ts\"",
"prettify": "prettier --write \"**/*.ts\"",
"format": "npm run prettify && npm run eslint",
"build": "tsc",
"build:watch": "tsc -w",
"build:docs ": "tsc --declaration"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fuwaguwa/SomeRandomAPI.js.git"
},
"keywords": [
"anime",
"canvas",
"api",
"wrapper",
"image",
"chatbot",
"animal",
"fact",
"some-random-api",
"somerandomapi"
],
"author": "Fuwafuwa",
"license": "MIT",
"bugs": {
"url": "https://github.com/fuwaguwa/SomeRandomAPI.js/issues"
},
"homepage": "https://github.com/fuwaguwa/SomeRandomAPI.js#readme",
"dependencies": {
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"eslint": "^8.32.0",
"eslint-config-standard-with-typescript": "^33.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^2.8.3",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
}
}