-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.1 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.1 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
104
105
106
{
"name": "Vangard-RenPy-IDE",
"version": "0.7.0",
"type": "module",
"main": "electron.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:debug": "vite build --mode development",
"preview": "vite preview",
"electron:start": "npm run build && electron .",
"predist": "node -e \"const fs=require('fs');try{fs.rmSync('release',{recursive:true,force:true})}catch(e){}\"",
"dist": "npm run build && electron-builder",
"version:patch": "node version.js patch",
"version:minor": "node version.js minor",
"version:major": "node version.js major",
"version:set": "node version.js set",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release:patch": "npm run version:patch && npm run build",
"release:minor": "npm run version:minor && npm run build",
"release:major": "npm run version:major && npm run build"
},
"dependencies": {
"@google/genai": "^0.12.0",
"@monaco-editor/react": "^4.6.0",
"electron-updater": "^6.8.3",
"immer": "^10.1.1",
"jszip": "^3.10.1",
"marked": "^17.0.5",
"monaco-editor": "^0.45.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^3.7.0",
"use-immer": "^0.10.0",
"vscode-oniguruma": "^2.0.1",
"vscode-textmate": "^9.3.2"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^4.0.18",
"autoprefixer": "^10.4.19",
"electron": "^29.1.5",
"electron-builder": "^24.13.3",
"eslint": "^9.0.0",
"eslint-plugin-react-hooks": "^7.0.1",
"jsdom": "^28.0.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"typescript": "^5.2.2",
"typescript-eslint": "^8.56.0",
"vite": "^5.2.0",
"vitest": "^4.0.18"
},
"build": {
"appId": "com.vangard.renpy.renide",
"productName": "Ren'IDE",
"executableName": "Vangard-RenPy-renide",
"publish": {
"provider": "github",
"owner": "bluemoonfoundry",
"repo": "vangard-renpy-ide"
},
"files": [
"dist/**/*",
"electron.js",
"preload.js",
"vangard-renide-512x512.png"
],
"directories": {
"output": "release"
},
"win": {
"target": "nsis",
"icon": "vangard-renide-512x512.png",
"artifactName": "${name}-Setup-${version}.${ext}"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Ren'IDE"
},
"mac": {
"target": "dmg",
"icon": "vangard-renide-512x512.png",
"artifactName": "${name}-${version}.${ext}"
},
"linux": {
"target": "AppImage",
"icon": "vangard-renide-512x512.png",
"artifactName": "${name}-${version}.${ext}"
}
}
}