-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.04 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
{
"name": "danbooru.js",
"version": "1.0.0",
"description": "A TypeScript wrapper for the Danbooru API.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"repository": "git@github.com:aericio/disbooru.git",
"author": "aericio <16523741+Aericio@users.noreply.github.com>",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"dumpRequest": "tsx watch scripts/dumpRequest",
"lint": "eslint --fix --ignore-path .gitignore **/**/*.ts",
"lint:check": "eslint --ignore-path .gitignore **/**/*.ts"
},
"dependencies": {
"got": "^13.0.0",
"ioredis": "^5.3.2"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@tsconfig/strictest": "^2.0.2",
"@types/node": "^18.12.1",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"prettier": "^2.8.1",
"tsx": "^4.6.2",
"typescript": "^5.3.3"
},
"volta": {
"node": "18.12.1",
"yarn": "1.22.19"
}
}