-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.12 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "qwik-turnstile",
"version": "0.0.3",
"description": "Qwik integration with Cloudflare Turnstile",
"main": "./lib/index.qwik.mjs",
"qwik": "./lib/index.qwik.mjs",
"types": "./lib-types/index.d.ts",
"exports": {
".": {
"import": "./lib/index.qwik.mjs",
"require": "./lib/index.qwik.cjs",
"types": "./lib-types/index.d.ts"
}
},
"files": [
"lib",
"lib-types"
],
"repository": {
"type": "git",
"url": "https://github.com/qwikifiers/qwik-turnstile"
},
"engines": {
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
},
"private": false,
"type": "module",
"scripts": {
"build": "qwik build",
"build.lib": "vite build --mode lib",
"build.types": "tsc --emitDeclarationOnly",
"change": "changeset",
"dev": "vite --mode ssr",
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"fmt.staged": "pretty-quick --staged",
"lint": "eslint \"src/**/*.ts*\"",
"release.pkg-pr-new": "pnpm dlx pkg-pr-new@^0.0.30 publish",
"release": "changeset publish",
"start": "vite --open --mode ssr",
"test": "echo \"No test specified\" && exit 0",
"toc": "markdown-toc -i README.md --maxdepth 3",
"qwik": "qwik"
},
"peerDependencies": {
"@builder.io/qwik": ">=1.0.0"
},
"devDependencies": {
"@builder.io/qwik": "1.10.0",
"@changesets/cli": "^2.27.10",
"@changesets/get-github-info": "^0.6.0",
"@changesets/types": "^6.0.0",
"@types/eslint": "8.56.10",
"@types/node": "20.14.11",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"all-contributors-cli": "^6.24.0",
"dotenv": "^16.4.5",
"eslint": "8.57.0",
"eslint-plugin-qwik": "1.10.0",
"markdown-toc": "^1.2.0",
"np": "^8.0.4",
"prettier": "3.3.3",
"pretty-quick": "^4.0.0",
"simple-git-hooks": "2.11.1",
"typescript": "5.4.5",
"undici": "*",
"vite": "5.3.5",
"vite-tsconfig-paths": "^4.2.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm fmt.staged && pnpm lint"
}
}