-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.43 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "iris-chat",
"private": true,
"version": "2.6.7",
"type": "module",
"description": "Decentralized encrypted messaging over Nostr",
"repository": "https://git.iris.to/#/npub1xdhnr9mrv47kkrn95k6cwecearydeh8e895990n3acntwvmgk2dsdeeycm/iris-chat",
"homepage": "https://git.iris.to/#/npub1xdhnr9mrv47kkrn95k6cwecearydeh8e895990n3acntwvmgk2dsdeeycm/iris-chat",
"bugs": {
"url": "https://git.iris.to/#/npub1xdhnr9mrv47kkrn95k6cwecearydeh8e895990n3acntwvmgk2dsdeeycm/iris-chat?tab=issues"
},
"packageManager": "pnpm@10.24.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json",
"test": "NODE_OPTIONS=\"--no-warnings --localstorage-file=.vitest-localstorage\" node node_modules/vitest/vitest.mjs run",
"test:watch": "NODE_OPTIONS=\"--no-warnings --localstorage-file=.vitest-localstorage\" node node_modules/vitest/vitest.mjs",
"test:e2e": "env -u NO_COLOR playwright test",
"test:e2e:flutter-interop": "IRIS_FLUTTER_INTEROP=1 env -u NO_COLOR playwright test e2e/flutter-interop-self-chat.spec.ts",
"smoke:portable": "node ./scripts/smoke-iris-chat-portable.mjs",
"publish:iris": "node ./scripts/publish-iris-build.mjs",
"release:iris": "node ./scripts/release-site.mjs"
},
"devDependencies": {
"@iconify-json/carbon": "^1.2.15",
"@playwright/test": "^1.57.0",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@tsconfig/svelte": "^5.0.6",
"@types/dompurify": "^3.2.0",
"@types/node": "^24.10.1",
"@types/qrcode": "^1.5.6",
"@types/ws": "^8.18.1",
"@unocss/preset-icons": "^66.5.10",
"@unocss/preset-uno": "^66.5.10",
"@unocss/transformer-directives": "^66.5.10",
"jsdom": "^26.1.0",
"svelte": "^5.43.8",
"svelte-check": "^4.3.4",
"typescript": "~5.9.3",
"unocss": "^66.5.10",
"vite": "^7.2.4",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^3.2.4",
"ws": "^8.19.0"
},
"dependencies": {
"@hashtree/core": "^0.1.1",
"@noble/hashes": "^2.0.1",
"@noble/secp256k1": "^3.0.0",
"@nostr-dev-kit/ndk": "^2.18.1",
"dexie": "^4.2.1",
"dompurify": "^3.2.6",
"jsqr": "^1.4.0",
"marked": "^15.0.0",
"minidenticons": "^4.2.1",
"nostr-double-ratchet": "^0.0.138",
"nostr-tools": "^2.19.3",
"qrcode": "^1.5.4"
},
"pnpm": {
"overrides": {
"@isaacs/brace-expansion": "5.0.1"
}
}
}