forked from ghostdevv/svelte-turnstile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.27 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
{
"name": "svelte-turnstile",
"version": "0.4.2",
"scripts": {
"dev": "vite dev",
"package": "svelte-kit sync && svelte-package",
"build": "vite build",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
},
"devDependencies": {
"@sveltejs/adapter-auto": "2.1.0",
"@sveltejs/kit": "1.20.2",
"@sveltejs/package": "^2.0.2",
"ghostsui": "^1.6.0",
"sass": "^1.62.1",
"svelte": "^3.59.1",
"svelte-check": "^3.4.3",
"svelte-preprocess": "^5.0.4",
"tslib": "^2.5.3",
"typescript": "^5.1.3",
"vite": "^4.3.9"
},
"peerDependencies": {
"svelte": "^3.58.0 || ^4.0.0"
},
"dependencies": {
"turnstile-types": "^1.1.2"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ghostdevv/svelte-turnstile.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ghostdevv/svelte-turnstile/issues"
},
"author": "GHOST <[email protected]> (https://ghostdev.xyz)",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}