-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.41 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
{
"name": "@hcaptcha/loader",
"description": "This is a JavaScript library to easily configure the loading of the hCaptcha JS client SDK with built-in error handling.",
"version": "1.2.4",
"author": "hCaptcha team and contributors",
"license": "MIT",
"keywords": [
"hcaptcha",
"captcha"
],
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/types/src/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"files": [
"README.md",
"dist",
"!**/*.tsbuildinfo"
],
"repository": {
"type": "git",
"url": "https://github.com/hCaptcha/hcaptcha-loader.git"
},
"scripts": {
"prepare": "pnpm run build:lib",
"build:lib": "pnpm -r --stream run compile:build",
"dev:lib": "pnpm -r --stream run compile:watch",
"display:demo": "http-server ./ --cors -d -o ./demo/src",
"serve:demo": "http-server ./",
"fix:lint": "pnpm -r --stream run fix:lint",
"test:lint": "pnpm -r --stream run test:lint",
"test:types": "pnpm -r --stream run test:types",
"test:unit": "pnpm -r --stream run test:unit",
"test:integration": "playwright test -c playwright.config.ts"
},
"devDependencies": {
"@loader/demo": "workspace:^",
"@loader/lib": "workspace:^",
"@playwright/experimental-ct-react": "^1.33.0",
"@playwright/test": "^1.33.0",
"@types/node": "^18.11.18",
"http-server": "^14.1.1"
}
}