-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.02 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
{
"name": "burnlink",
"title": "BurnLink - Share secrets & links securely",
"description": "BurnLink - Share secrets & links securely encrypted with no data storage anywhere",
"private": true,
"version": "0.0.1",
"type": "module",
"license": "MIT",
"homepage": "https://burnlink.ru",
"repository": {
"type": "git",
"url": "https://github.com/Saturnych/burnlink"
},
"bugs": {
"url": "https://github.com/Saturnych/burnlink/issues"
},
"author": {
"name": "Denis Glebko",
"email": "saturnych@gmail.com",
"url": "https://github.com/Saturnych"
},
"scripts": {
"dev": "vite dev --port 3300 --host",
"start": "vite dev --host",
"build": "vite build",
"preview": "vite preview --port 3311 --host",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"lint": "prettier --check .",
"test": "playwright test"
},
"devDependencies": {
"@iconify/svelte": "^5.0.1",
"@playwright/test": "^1.54.2",
"@sveltejs/adapter-auto": "^6.1.0",
"@sveltejs/adapter-static": "^3.0.9",
"@sveltejs/adapter-vercel": "^5.8.2",
"@sveltejs/kit": "^2.28.0",
"@sveltejs/vite-plugin-svelte": "^6.1.1",
"@tailwindcss/vite": "^4.0.0",
"@types/node": "^24.2.1",
"dotenv": "^17.2.1",
"fingerprintjs2": "^2.1.4",
"jsonwebtoken": "^9.0.2",
"mdsvex": "^0.12.6",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.4.0",
"runed": "^0.31.1",
"svelte": "^5.38.1",
"svelte-check": "^4.3.1",
"svelte-copy": "^2.0.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.9.2",
"vite": "^7.1.2",
"vite-plugin-cross-origin-isolation": "^0.1.6",
"vite-plugin-devtools-json": "^0.4.1",
"vite-plugin-mkcert": "^1.17.8"
},
"dependencies": {
"@qwik.dev/partytown": "^0.11.2",
"hash-wasm": "^4.12.0",
"short-uuid": "^5.2.0",
"simple-encryptor": "^4.0.0"
},
"engines": {
"node": ">=22.12.0"
},
"keywords": [
"sveltekit",
"typescript"
]
}