This repository was archived by the owner on Feb 15, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.34 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.34 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
{
"name": "@swetrix/captcha",
"version": "2.2.0",
"description": "Swetrix CAPTCHA",
"keywords": [
"analytics",
"metrics",
"monitoring",
"privacy",
"swetrix"
],
"homepage": "https://swetrix.com/captcha",
"bugs": {
"url": "https://github.com/Swetrix/swetrix-captcha/issues"
},
"license": "MIT",
"author": "Swetrix Ltd <contact@swetrix.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/Swetrix/swetrix-captcha.git"
},
"type": "module",
"typings": "dist/esnext/index.d.ts",
"esnext": "dist/esnext/index.js",
"exports": {
".": {
"types": "./dist/esnext/index.d.ts",
"import": "./dist/esnext/index.js",
"require": "./dist/captcha.cjs.js",
"default": "./dist/captcha.js"
}
},
"scripts": {
"prebuild": "rimraf dist",
"prepublish": "npm run build",
"build": "rollup -c",
"start": "rollup -c -w",
"tsc": "tsc -p tsconfig.esnext.json"
},
"devDependencies": {
"@blaumaus/rollup-plugin-uglify": "^7.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^22.15.21",
"rimraf": "^5.0.7",
"rollup": "^4.54.0",
"rollup-plugin-copy": "^3.5.0",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
},
"captcha": "dist/captcha.js",
"captchaloader": "dist/captcha-loader.js"
}