-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
121 lines (121 loc) · 3.54 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@passlock/sveltekit",
"version": "0.9.31",
"description": "Passkey authentication and social login for SvelteKit apps",
"keywords": [
"passkey",
"passkeys",
"webauthn",
"google one tap",
"sign in with google",
"sign in with apple",
"svelte",
"sveltekit"
],
"author": {
"name": "Toby Hobson",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://passlock.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/passlock-dev/passlock.git",
"directory": "packages/sveltekit"
},
"bugs": {
"url": "https://github.com/passlock-dev/passlock/issues",
"email": "[email protected]"
},
"scripts": {
"dev": "vite dev",
"clean": "rimraf ./dist",
"typecheck": "pnpm run check:errors",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:errors": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --threshold error",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "vitest run",
"test:watch": "vitest dev",
"test:ui": "vitest --coverage.enabled=true --ui",
"test:coverage": "vitest run --coverage",
"format": "prettier --write \"(src|scripts)/**/*.+(js|ts|json|svelte)\"",
"lint": "eslint ./src",
"lint:fix": "pnpm run lint --fix",
"build": "pnpm run check:errors && svelte-package",
"build:clean": "pnpm run clean && pnpm run build",
"build:readme": "LATEST=${npm_package_version} tsx ../shared/scripts/replace-readme-tokens.ts ./packages/sveltekit",
"replaceTokens": "LATEST=${npm_package_version} tsx ../shared/scripts/replace-tokens.ts ./packages/sveltekit",
"build:production": "pnpm run build:clean && pnpm run build:readme && pnpm run replaceTokens && echo '' && publint",
"prepublishOnly": "pnpm run build:production",
"upgrade:deps": "ncu --peer -x effect -x @effect/* -i -u"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"svelte": "./dist/index.js"
},
"./superforms": {
"types": "./dist/superforms/index.d.ts",
"import": "./dist/superforms/index.js",
"svelte": "./dist/superforms/index.js"
},
"./components/social": {
"types": "./dist/components/social/index.d.ts",
"import": "./dist/components/social/index.js",
"svelte": "./dist/components/social/index.js"
}
},
"files": [
"src",
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"peerDependencies": {
"@sveltejs/kit": "^2.6.2",
"svelte": "^4.0.0",
"sveltekit-superforms": "^2.15.2"
},
"peerDependenciesMeta": {
"sveltekit-superforms": {
"optional": true
}
},
"dependencies": {
"@effect/schema": "0.74.1",
"@passlock/client": "workspace:*",
"@passlock/shared": "workspace:*",
"effect": "3.8.4"
},
"devDependencies": {
"@qetza/replacetokens": "^1.7.0",
"@sveltejs/adapter-auto": "^3.2.5",
"@sveltejs/kit": "^2.6.2",
"@sveltejs/package": "^2.3.5",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@types/apple-signin-api": "^1.5.3",
"@types/eslint": "^9.6.1",
"@types/google-one-tap": "^1.2.6",
"@types/node": "^22.7.4",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.44.1",
"globals": "^15.10.0",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.7",
"publint": "^0.2.11",
"rimraf": "^6.0.1",
"svelte": "^4.2.19",
"svelte-check": "^4.0.4",
"sveltekit-superforms": "^2.19.1",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0",
"vite": "^5.4.8",
"vitest": "^2.1.2"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module"
}