-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
118 lines (118 loc) · 3.23 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
{
"name": "iris",
"private": true,
"version": "0.1.0",
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/irislib/iris-client.git"
},
"description": "Nostr client",
"author": "Martti Malmi",
"license": "MIT",
"scripts": {
"dev": "vite",
"start": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --fix",
"preview": "vite preview",
"test": "vitest",
"format": "prettier --write \"**/*.+(js|jsx|tsx|json|yml|yaml|css|md)\""
},
"build": {
"extends": null,
"appId": "com.nestr",
"mac": {
"icon": "src/assets/nest-logo-no-name.png"
},
"win": {
"icon": "src/assets/nest-logo-no-name.png"
},
"nsis": {
"installerIcon": "src/assets/nest-logo-no-name.png"
},
"files": [
"dist/**/*",
"build/**/*",
"node_modules/**/*",
"package.json"
],
"directories": {
"buildResources": "assets"
}
},
"dependencies": {
"@emoji-mart/data": "^1.2.1",
"@emoji-mart/react": "^1.1.1",
"@getalby/bitcoin-connect-react": "^3.6.3",
"@noble/hashes": "^1.7.1",
"@nostr-dev-kit/ndk": "2.11.2",
"@nostr-dev-kit/ndk-cache-dexie": "2.5.11",
"@remixicon/react": "^4.6.0",
"classnames": "^2.5.1",
"emoji-mart": "^5.6.0",
"fuse.js": "^7.1.0",
"hls.js": "^1.5.20",
"irisdb": "1.0.12",
"irisdb-hooks": "1.0.14",
"irisdb-nostr": "^1.0.23",
"jsqr": "^1.4.0",
"light-bolt11-decoder": "^3.2.0",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"markdown-to-jsx": "^7.7.4",
"minidenticons": "^4.2.1",
"nostr-double-ratchet": "0.0.27",
"nostr-social-graph": "1.0.16",
"nostr-tools": "^2.10.4",
"qrcode": "^1.5.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-helmet": "^6.1.0",
"react-router": "^7.2.0",
"react-string-replace": "^1.1.1",
"react-swipeable": "^7.0.2",
"typescript-lru-cache": "^2.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.7",
"@tailwindcss/typography": "^0.5.16",
"@types/config": "^3.3.5",
"@types/debug": "^4.1.12",
"@types/lodash": "^4.17.15",
"@types/qrcode": "^1.5.5",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/react-helmet": "^6.1.11",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.9.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.2",
"config": "^3.3.12",
"cross-env": "^7.0.3",
"daisyui": "^4.12.23",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.11",
"jsdom": "^26.0.0",
"postcss": "^8.5.2",
"prettier": "^3.5.1",
"prettier-plugin-sort-imports": "^1.8.6",
"rollup-plugin-visualizer": "^5.14.0",
"tailwindcss": "^3.4.10",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vite-plugin-node-polyfills": "^0.23.0",
"vite-plugin-pwa": "^0.21.1",
"vitest": "^3.0.6",
"wait-on": "^8.0.2"
}
}