-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.41 KB
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
{
"name": "passwordless-encryption",
"version": "0.1.0",
"private": true,
"description": "Passwordless encryption using WebAuthn PRF",
"author": "impact-dryer",
"license": "MIT",
"homepage": "https://github.com/impact-dryer/passwordlesscrypt",
"repository": {
"type": "git",
"url": "https://github.com/impact-dryer/passwordlesscrypt.git"
},
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "vitest",
"test:unit": "vitest run",
"test:integration": "vitest run --project integration",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@playwright/test": "1.57.0",
"@sveltejs/adapter-static": "^3.0.0",
"@sveltejs/kit": "^2.21.0",
"@sveltejs/vite-plugin-svelte": "^6.2.0",
"@tailwindcss/vite": "^4.1.0",
"@testing-library/svelte": "^5.3.1",
"@types/node": "^25.0.0",
"@vitest/coverage-v8": "^4.0.0",
"eslint": "^9.39.2",
"eslint-plugin-security": "^3.0.0",
"eslint-plugin-svelte": "^3.13.0",
"globals": "^16.5.0",
"husky": "^9.1.0",
"jsdom": "^27.4.0",
"lint-staged": "^16.1.0",
"prettier": "^3.5.0",
"prettier-plugin-svelte": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"svelte": "^5.46.1",
"svelte-check": "^4.2.0",
"tailwindcss": "^4.1.0",
"tslib": "^2.8.0",
"typescript": "^5.8.0",
"typescript-eslint": "^8.50.1",
"vite": "^7.3.0",
"vitest": "^4.0.0"
},
"dependencies": {
"@simplewebauthn/browser": "^13.2.0",
"@vite-pwa/sveltekit": "^1.1.0",
"idb-keyval": "^6.2.0",
"libsodium-wrappers": "^0.7.15",
"zod": "^3.25.0"
},
"engines": {
"node": ">=22.0.0"
},
"lint-staged": {
"*.{ts,svelte}": [
"eslint --fix",
"prettier --write"
],
"*.{js,json,md,css,html}": [
"prettier --write"
]
}
}