-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
{
"name": "@swetrix/captcha-validator",
"version": "1.0.0",
"description": "Swetrix CAPTCHA token validator package.",
"main": "dist/captcha-validator.cjs.js",
"module": "dist/captcha-validator.es5.js",
"esnext": "dist/esnext/index.js",
"typings": "dist/esnext/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"prepublish": "npm run build",
"build": "rollup -c && tsc -p tsconfig.esnext.json",
"start": "rollup -c -w",
"tsc": "tsc -p tsconfig.esnext.json"
},
"keywords": [
"swetrix",
"analytics",
"captcha",
"validation",
"privacy"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Swetrix/captcha-validator.git"
},
"author": "Andrii Romasiun <andrii@swetrix.com>",
"funding": "https://ko-fi.com/andriir",
"license": "MIT",
"bugs": {
"url": "https://github.com/Swetrix/captcha-validator/issues"
},
"homepage": "https://captcha.swetrix.com",
"dependencies": {
"@types/node": "^18.15.3",
"tslib": "^2.5.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"rimraf": "^4.4.0",
"rollup": "^2.79.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^5.0.2"
}
}