-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "@zakku/ez-captcha",
"version": "1.0.3",
"description": "A non-AI powered node.js library for solving GameFail's captcha.",
"main": "dist/index.js",
"repository": "https://github.com/zakuciael/ez-captcha.git",
"author": "Krzysztof Saczuk <zakuciael@outlook.com>",
"license": "MIT",
"private": false,
"types": "./index.d.ts",
"engines": {
"node": ">=12.20.1"
},
"keywords": [
"nostale",
"captcha",
"solver",
"gameforge"
],
"scripts": {
"start": "ts-node src/test.ts",
"build": "tsc -p tsconfig.json",
"lint": "eslint src/**/*.ts",
"prepublish": "yarn lint && yarn build"
},
"devDependencies": {
"@types/node": "12.19.14",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"node-fetch": "^2.6.1"
}
}