-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.34 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.34 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
{
"name": "vrchatfriendshipvisualizer",
"version": "0.1.0",
"description": "VRChat friendship network visualization tool",
"main": "dist/electron/main.js",
"scripts": {
"start": "electron .",
"dev": "nodemon --exec ts-node src/app.ts --ignore 'data/*' --ignore 'public/*'",
"build": "tsc && npm run copy-public && npm run copy-version",
"copy-public": "copyfiles -u 1 public/**/* dist/public",
"copy-version": "copyfiles -u 0 VERSION dist/",
"format": "npx biome format --write .",
"lint": "npx biome lint .",
"electron:build": "cross-env WIN_CSC_LINK=\"\" CSC_LINK=\"\" CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder"
},
"keywords": [
"vrchat",
"network",
"visualization"
],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^16.4.7",
"express": "^4.22.1",
"form-data": "^4.0.4",
"fs-extra": "^11.2.0",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/d3": "^7.4.3",
"@types/electron": "^1.6.12",
"@types/express": "^5.0.0",
"@types/form-data": "^2.5.2",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/node-fetch": "^2.6.12",
"concurrently": "^9.1.2",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"electron": "^39.8.6",
"electron-builder": "^26.6.0",
"globals": "^15.13.0",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"nodemonConfig": {
"ignore": [
"data/*",
"public/*",
"*.json"
],
"watch": [
"src/",
"electron/"
],
"ext": "js,ts"
},
"build": {
"asar": true,
"appId": "refiaa.vrchatfriendshipvisualizer",
"files": [
"dist/**/*",
"public/**/*",
"node_modules/**/*",
"src/**/*"
],
"directories": {
"buildResources": "build"
},
"extraResources": [
"VERSION",
"LICENSE"
],
"win": {
"certificateFile": null,
"certificateSubjectName": null,
"signAndEditExecutable": false
},
"nsis": {
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"perMachine": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "VRChatFriendShipVisualizer"
}
}
}