-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.43 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.43 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
{
"name": "octi-web",
"private": true,
"version": "0.2.0-rc0",
"type": "module",
"packageManager": "pnpm@11.1.1",
"scripts": {
"dev": "vite",
"build": "svelte-check --tsconfig ./tsconfig.json && vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"test": "vitest run",
"test:watch": "vitest",
"test:smoke": "vitest run --config vitest.smoke.config.ts",
"fixtures:sync": "tsx tools/sync-fixtures.ts",
"fixtures:generate": "tsx tools/generate-fixtures.ts",
"bootstrap-peer": "tsx tools/screenshots/bootstrap-peer.ts",
"e2e": "playwright test tests/e2e/link-and-capture.spec.ts",
"e2e:smoke": "playwright test tests/e2e/smoke.spec.ts",
"e2e:multi": "playwright test tests/e2e/multi-connector.spec.ts",
"screenshots:thumbs": "node scripts/generate-thumbs.mjs"
},
"dependencies": {
"@noble/ciphers": "1.1.3",
"fflate": "0.8.2",
"idb": "8.0.0",
"jsqr": "1.4.0",
"qrcode": "1.5.4"
},
"devDependencies": {
"@playwright/test": "^1.50.0",
"@sveltejs/vite-plugin-svelte": "5.0.3",
"@tsconfig/svelte": "5.0.4",
"@types/node": "22.10.5",
"@types/qrcode": "1.5.5",
"fake-indexeddb": "^6.2.5",
"jsdom": "^25.0.1",
"sharp": "^0.34.0",
"svelte": "5.16.0",
"svelte-check": "4.1.4",
"tslib": "2.8.1",
"tsx": "^4.20.0",
"typescript": "5.7.2",
"vite": "6.0.7",
"vitest": "2.1.8"
}
}