-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
135 lines (135 loc) · 4.16 KB
/
package.json
File metadata and controls
135 lines (135 loc) · 4.16 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "mz-interaction-builder",
"version": "2.2.0",
"description": "Visual node-graph editor for creating RPG Maker MZ interactions",
"main": "./out/main/index.js",
"author": "MZ Interaction Builder",
"license": "MIT",
"homepage": "https://github.com/Wintersta7e/mz-interaction-builder#readme",
"repository": {
"type": "git",
"url": "https://github.com/Wintersta7e/mz-interaction-builder.git"
},
"bugs": {
"url": "https://github.com/Wintersta7e/mz-interaction-builder/issues"
},
"keywords": [
"rpg-maker",
"rpg-maker-mz",
"dialogue-editor",
"node-graph",
"visual-editor",
"electron",
"react",
"typescript"
],
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "node node_modules/electron-vite/bin/electron-vite.js preview",
"dev": "node node_modules/electron-vite/bin/electron-vite.js dev",
"build": "npm run typecheck && node node_modules/electron-vite/bin/electron-vite.js build",
"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",
"test": "node node_modules/vitest/vitest.mjs run --passWithNoTests",
"test:watch": "node node_modules/vitest/vitest.mjs",
"test:coverage": "node node_modules/vitest/vitest.mjs run --passWithNoTests --coverage"
},
"dependencies": {
"@dagrejs/dagre": "^3.0.0",
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^4.0.0",
"@fontsource/inter": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-context-menu": "^2.2.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@tailwindcss/vite": "^4.2.2",
"@xyflow/react": "^12.10.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^12.38.0",
"lucide-react": "^1.8.0",
"tailwind-merge": "^3.5.0",
"uuid": "^14.0.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.0.0",
"@electron-toolkit/tsconfig": "^2.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"electron": "^41.1.1",
"electron-builder": "^26.8.1",
"electron-vite": "^5.0.0",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^7.0.1",
"jsdom": "^29.0.2",
"prettier": "^3.3.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"vite": "^7.3.1",
"vitest": "^4.1.3"
},
"build": {
"appId": "com.mzinteractionbuilder",
"productName": "MZ Interaction Builder",
"icon": "build/icon.png",
"directories": {
"output": "release"
},
"files": [
"out/**/*"
],
"win": {
"icon": "build/icon.ico",
"target": [
"portable"
]
},
"mac": {
"target": [
"dmg",
"zip"
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"fileAssociations": [
{
"ext": "mzinteraction",
"name": "MZ Interaction File",
"icon": "build/file-icon.ico",
"role": "Editor"
}
]
}
}