-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 1.89 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "k9guard",
"version": "1.0.4",
"description": "A secure, lightweight, and flexible CAPTCHA module for TypeScript/JavaScript projects with cryptographic security and multi-language support",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"build": "tsup",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"prepublishOnly": "bun run build"
},
"keywords": [
"captcha",
"security",
"cryptography",
"typescript",
"javascript",
"authentication",
"verification",
"bot-protection",
"spam-prevention",
"nist",
"owasp",
"gdpr",
"kvkk",
"sha256",
"multi-language",
"i18n",
"math-captcha",
"riddle-captcha",
"logic-captcha",
"k9crypt"
],
"author": {
"name": "K9Crypt",
"url": "https://k9crypt.xyz/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/K9Crypt/k9guard.git"
},
"bugs": {
"url": "https://github.com/K9Crypt/k9guard/issues"
},
"homepage": "https://github.com/K9Crypt/k9guard#readme",
"files": [
"dist/",
"README.md",
"LICENSE",
"docs/"
],
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/node": "^25.9.1",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"eslint": "^10.4.0",
"tsup": "^8.5.1",
"tsx": "^4.22.3",
"typescript": "^6.0.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}