-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.57 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
{
"name": "@formrelay/core",
"version": "0.3.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/FormRelay/js.git",
"directory": "packages/core"
},
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.mts"
},
"./bot-protection": {
"import": "./dist/bot-protection.mjs",
"require": "./dist/bot-protection.cjs",
"types": "./dist/bot-protection.d.mts"
},
"./recaptcha-v2": {
"import": "./dist/recaptcha-v2.mjs",
"require": "./dist/recaptcha-v2.cjs",
"types": "./dist/recaptcha-v2.d.mts"
},
"./recaptcha-v3": {
"import": "./dist/recaptcha-v3.mjs",
"require": "./dist/recaptcha-v3.cjs",
"types": "./dist/recaptcha-v3.d.mts"
},
"./turnstile": {
"import": "./dist/turnstile.mjs",
"require": "./dist/turnstile.cjs",
"types": "./dist/turnstile.d.mts"
},
"./validation": {
"import": "./dist/validation.mjs",
"require": "./dist/validation.cjs",
"types": "./dist/validation.d.mts"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vp pack",
"test": "vp test"
},
"dependencies": {
"@cfworker/json-schema": "^4.1.1"
},
"devDependencies": {
"jsdom": "^29.0.1",
"typescript": "latest",
"vite-plus": "latest"
}
}