-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
65 lines (65 loc) · 1.64 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
{
"name": "svelte-turnstile",
"version": "0.10.0",
"scripts": {
"dev": "vite dev",
"package": "svelte-kit sync && svelte-package && publint",
"build": "vite build",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json && publint",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
},
"devDependencies": {
"@sveltejs/adapter-auto": "3.3.1",
"@sveltejs/kit": "2.7.3",
"@sveltejs/package": "^2.3.7",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"ghostsui": "^1.6.0",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.2",
"publint": "^0.2.12",
"sass": "^1.83.1",
"svelte": "^4.2.19",
"svelte-check": "^4.1.1",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"vite": "^5.4.11"
},
"peerDependencies": {
"svelte": "^3.58.0 || ^4.0.0 || ^5.0.0"
},
"dependencies": {
"turnstile-types": "^1.2.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ghostdevv/svelte-turnstile.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ghostdevv/svelte-turnstile/issues"
},
"author": "Willow GHOST <ghostdevbusiness@gmail.com> (https://ghostdev.xyz)",
"contributors": [
"Braden Wiggins <braden@fractal-hq.com> (https://fractal-hq.com/)",
"Willow GHOST <ghostdevbusiness@gmail.com> (https://ghostdev.xyz)"
],
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"volta": {
"node": "22.10.0",
"pnpm": "9.12.2"
}
}