-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.53 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "verify-hcaptcha",
"version": "2.0.0",
"description": "A fully typed library to verify hCaptcha.com tokens submitted by users when solving captcha challenges",
"license": "MIT",
"author": {
"name": "Edoardo Scibona",
"url": "https://github.com/velut"
},
"repository": {
"type": "git",
"url": "https://github.com/velut/verify-hcaptcha.git"
},
"bugs": {
"url": "https://github.com/velut/verify-hcaptcha/issues"
},
"keywords": [
"hcaptcha",
"captcha",
"verify",
"response",
"token",
"user",
"typescript",
"types",
"typed",
"node",
"validate",
"check",
"siteverify"
],
"sideEffects": false,
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"check": "tsc --noEmit",
"build": "tsc --noEmit && tsup",
"attw": "attw --pack . --ignore-rules cjs-resolves-to-esm",
"test": "vitest",
"test:ci": "vitest run --coverage --bail 1",
"lint": "prettier --check .",
"format": "prettier --write .",
"pre-push": "bun install && bun run lint && bun run build && bun run test:ci && bun run attw",
"release": "np --no-cleanup"
},
"dependencies": {
"zod": "^3.23.8"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@types/bun": "^1.1.3",
"@vitest/coverage-v8": "^1.6.0",
"np": "^10.0.5",
"prettier": "^3.3.2",
"tsup": "^8.1.0",
"typescript": "^5.5.3",
"vitest": "^1.6.0"
}
}