-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.55 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.55 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
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
{
"name": "d-chat",
"displayName": "d-chat",
"version": "7.0.4",
"description": "Decentralized Chat on NKN",
"author": "NKN",
"homepage": "https://github.com/nknorg/d-chat",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nknorg/d-chat"
},
"bugs": {
"url": "https://github.com/nknorg/d-chat/issues"
},
"engines": {
"node": ">=23.0.0"
},
"main": "./out/main/index.js",
"scripts": {
"format": "prettier --write .",
"lint": "eslint --cache .",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "vue-tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"dev:web": "vite",
"dev:webext": "concurrently \"npm run dev:chrome\" \"npm run dev:firefox\"",
"dev:chrome": "cross-env NODE_ENV=development vite -c vite.chrome.config.ts",
"dev:firefox": "cross-env NODE_ENV=development vite build --mode development --watch -c vite.firefox.config.ts",
"build": "npm run typecheck && electron-vite build",
"build:web": "vite build --outDir dist-web",
"build:webext": "npm run build:chrome && npm run build:firefox",
"build:chrome": "cross-env NODE_ENV=production vite build -c vite.chrome.config.ts",
"build:firefox": "cross-env NODE_ENV=production vite build -c vite.firefox.config.ts",
"preview": "vite preview --outDir dist-web",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac": "npm run build && electron-builder --mac",
"build:linux": "npm run build && electron-builder --linux"
},
"dependencies": {
"@d-chat/core": "workspace:*",
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^4.0.0",
"axios": "^1.8.4",
"buffer": "^6.0.3",
"dayjs": "^1.11.13",
"electron-store": "^10.0.1",
"electron-updater": "^6.3.9",
"loglevel": "^1.9.2",
"marked": "^15.0.7",
"nkn-sdk": "^1.3.6",
"node-machine-id": "^1.1.12",
"notivue": "^2.4.5",
"qrcode.vue": "^3.6.0",
"roboto-fontface": "*",
"splitpanes": "^4.0.3",
"uuid": "^11.1.0",
"vue-picture-cropper": "^0.7.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.32",
"@electron-toolkit/eslint-config-prettier": "3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@iconify/vue": "^4.3.0",
"@intlify/unplugin-vue-i18n": "^6.0.5",
"@mdi/font": "^7.4.47",
"@types/node": "^22.13.10",
"@vitejs/plugin-vue": "^5.2.3",
"@vueuse/core": "^13.0.0",
"chrome-types": "^0.1.345",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"dexie": "^4.0.11",
"electron": "^35.0.2",
"electron-builder": "^25.1.8",
"electron-vite": "^3.0.0",
"eslint": "^9.22.0",
"eslint-plugin-vue": "^10.0.0",
"pinia": "^3.0.1",
"prettier": "^3.5.3",
"sass": "^1.86.0",
"sass-embedded": "^1.86.0",
"typescript": "^5.8.2",
"unplugin-fonts": "^1.3.1",
"unplugin-vue-components": "^28.4.1",
"vite": "^6.3.5",
"vite-plugin-node-polyfills": "^0.23.0",
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-vuetify": "^2.1.0",
"vite-plugin-zip-pack": "^1.2.4",
"vue": "^3.5.13",
"vue-i18n": "^11.1.2",
"vue-router": "^4.5.0",
"vue-tsc": "^2.2.8",
"vuetify": "^3.7.18"
},
"packageManager": "pnpm@10.10.0"
}