-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 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
{
"name": "turnstile-verify",
"version": "1.2.0",
"sideEffects": false,
"description": "Server-side verification for Cloudflare Turnstile captchas",
"homepage": "https://github.com/maaaathis/turnstile-verify",
"repository": {
"type": "git",
"url": "git+https://github.com/maaaathis/turnstile-verify.git"
},
"author": "maaaathis",
"license": "MIT",
"keywords": [
"turnstile",
"cloudflare",
"captcha"
],
"bugs": {
"url": "https://github.com/maaaathis/turnstile-verify/issues/new"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.esm",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"package.json"
],
"scripts": {
"build": "yarn test && tsup src/index.ts --dts --format cjs,esm && attw --pack .",
"check": "tsc --project tsconfig.json --noEmit",
"format": "yarn prettier --write \"**/*.{js,jsx,ts,tsx,css,scss}\"",
"test": "run test:format",
"test:format": "prettier --check \"**/*.{js,jsx,ts,tsx,css,scss}\"",
"prepublishOnly": "run test",
"release": "yarn build && yarn npm publish && npx jsr publish"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"packageManager": "[email protected]",
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@types/node": "22.7.5",
"maathis": "^0.2.1",
"prettier": "^3.3.2",
"tsup": "^8.2.3",
"typescript": "^5.5.4"
}
}