-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.71 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
{
"name": "interpoll",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:relay": "node relay-server.js",
"dev:gun": "node gun-relay-server/gun-relay.js",
"dev:peer": "node peer.js",
"build": "vite build",
"preview": "vite preview",
"start": "node relay-server.js",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"test": "vitest run --config unit_tests/vitest.config.ts",
"test:watch": "vitest --config unit_tests/vitest.config.ts"
},
"dependencies": {
"@capacitor/app": "^5.0.0",
"@capacitor/clipboard": "^5.0.0",
"@capacitor/core": "^5.6.0",
"@capacitor/share": "^5.0.0",
"@ionic/vue": "^8.0.0",
"@ionic/vue-router": "^8.0.0",
"@noble/curves": "^2.0.1",
"@noble/hashes": "^1.3.3",
"@unhead/vue": "^2.1.4",
"@wxperia/liquid-glass-vue": "^1.0.9",
"bip39": "^3.1.0",
"browser-image-compression": "^2.0.2",
"buffer": "^6.0.3",
"gu": "^0.6.2",
"gun": "^0.2020.1241",
"idb": "^8.0.0",
"ionicons": "^7.2.1",
"ipfs-core": "^0.18.1",
"libp2p-webrtc-star": "^0.25.0",
"naughty-words": "^1.2.0",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"pinia": "^2.1.7",
"simple-peer": "^9.11.1",
"stream-browserify": "^3.0.0",
"vue": "^3.4.0",
"vue-router": "^4.2.5",
"ws": "^8.19.0"
},
"devDependencies": {
"@capacitor/cli": "^5.6.0",
"@types/node": "^20.10.0",
"@vitejs/plugin-vue": "^5.0.0",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.32",
"tailwindcss": "^3.4.0",
"typescript": "^5.9.3",
"vite": "^5.0.0",
"vitest": "^4.1.4",
"vue-tsc": "^3.2.4"
}
}