-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.47 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
{
"name": "vanilla-captcha",
"version": "2.0.16",
"description": "pure javascript captcha implementation",
"main": "index.js",
"scripts": {
"clean": "rm -rf dom.d.* index.d.* utils.d.* *.js",
"build": "npm run clean && tsc",
"cp": "cp -r ./dist/* ./",
"git:prepublish": "git add . && git commit --amend && npm version patch",
"go": "npm run build && npm run cp && npm run git:prepublish && npm publish && npm run clean"
},
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./dom": {
"types": "./index.d.ts",
"default": "./dom.js"
},
"./utils": {
"types": "./index.d.ts",
"default": "./utils.js"
}
},
"type": "module",
"keywords": [
"anti-bot",
"pure js",
"captcha",
"simple",
"adaptable",
"easy to use"
],
"files": [
"./svg-builder.d.ts",
"./index.js",
"./dom.js",
"./utils.js",
"./index.d.ts",
"./dom.d.ts",
"./utils.d.ts"
],
"author": {
"email": "[email protected]",
"name": "Carlos Daniel Vilaseca",
"url": "https://github.com/carlos-err406"
},
"license": "MIT",
"repository": {
"url": "git+https://github.com/Carlos-err406/vanilla-captcha.git",
"type": "github"
},
"homepage": "https://github.com/Carlos-err406/vanilla-captcha#readme",
"devDependencies": {
"@types/node": "^20.8.2"
},
"dependencies": {
"sharp": "^0.32.6",
"svg-builder": "^2.0.0"
}
}