-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
52 lines (52 loc) · 1.31 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
{
"name": "scathach-api",
"version": "1.0.16",
"description": "A NodeJS wrapper to interacts with Scathach bot",
"main": "build/index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/sinkaroid/scathach-api.git"
},
"scripts": {
"build": "rm -rf build/ && tsc",
"docs": "npx typedoc --entryPointStrategy expand src/ index.ts",
"lint": "npx eslint . --ext .ts",
"lint:fix": "npx eslint . --fix",
"test:get": "npx ts-node test/scathach.get.ts",
"test:search": "npx ts-node test/scathach.search.ts",
"changelog": "npx changelog"
},
"keywords": [
"NSFW",
"wrapper",
"fgo",
"genshin impact",
"azurlane",
"booru"
],
"author": "sinkaroid",
"license": "MIT",
"bugs": {
"url": "https://github.com/sinkaroid/scathach-api/issues"
},
"dependencies": {
"phin": "^3.6.1"
},
"devDependencies": {
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"changelog": "^1.4.2",
"eslint": "^7.32.0",
"npx": "^10.2.2",
"ts-node": "^10.7.0",
"typedoc": "^0.23.10",
"typedoc-plugin-rename-defaults": "^0.6.4",
"typedoc-theme-hierarchy": "^3.0.0",
"typescript": "^4.6.3"
},
"engines": {
"node": ">=14"
}
}