-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.13 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.13 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
{
"name": "chainchat",
"type": "module",
"private": true,
"description": "Peer-to-peer blockchain messenger with a Windows 95 desktop interface",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/oglenyaboss/chainchat.git"
},
"keywords": [
"blockchain",
"p2p",
"webrtc",
"messenger",
"win95",
"nuxt",
"vue",
"typescript"
],
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"dev:signal": "node server.js",
"dev:all": "node server.js & nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@pinia/nuxt": "^0.11.3",
"nuxt": "^4.3.1",
"pinia": "^3.0.4",
"pinia-plugin-persistedstate": "^4.7.1",
"tailwindcss": "^4.2.1",
"vue": "^3.5.28",
"vue-router": "^4.6.4",
"ws": "^8.20.0"
},
"devDependencies": {
"@antfu/eslint-config": "^8.0.0",
"@types/node": "^25.5.0",
"eslint": "^10.1.0",
"vitest": "^4.1.2"
}
}