-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.79 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@zennolab_com/capmonstercloud-client",
"version": "2.9.0",
"description": "Official JS client library for https://capmonster.cloud/ captcha recognition service",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/index.js",
"default": "./dist/esm/index.js"
}
},
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"homepage": "https://github.com/ZennoLab/capmonstercloud-client-js",
"repository": {
"type": "git",
"url": "git+https://github.com/ZennoLab/capmonstercloud-client-js.git"
},
"keywords": [
"CapMonster",
"CapMonster Cloud",
"ZennoPoster"
],
"scripts": {
"build": "node js-rimraf.js && npx tsc && npx tsc -p tsconfig.esm.json && node js-fix-esm-imports.js && node -e \"require('fs').writeFileSync('dist/esm/package.json', JSON.stringify({ type: 'module' }, null, 2))\"",
"test": "jest",
"test-unit": "jest -c jest.config.unit.js",
"test-integr": "jest -c jest.config.integration.js",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,.js --fix"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/jest": "^29.0.0",
"@types/node": "^18.7.9",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.6.2",
"prettier": "^2.7.1",
"ts-jest": "^29.1.1",
"typescript": "^4.7.4"
},
"dependencies": {
"debug": "^4.3.4"
},
"overrides": {
"minimatch": "^10.1.1",
"brace-expansion": "^5.0.8"
}
}