-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathpackage.json
85 lines (85 loc) · 2.38 KB
/
package.json
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
{
"name": "behavior3editor",
"version": "1.6.0",
"main": "dist-electron/main/index.js",
"description": "行为树编辑器",
"author": "zhandouxiaojiji & codetypes",
"license": "MIT",
"private": true,
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:7777/"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"tsc-check:": "tsc --noEmit",
"postinstall": "copy-files-from-to"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/zhandouxiaojiji/behavior3editor.git"
},
"bugs": {
"url": "https://github.com/zhandouxiaojiji/behavior3editor/issues"
},
"homepage": "https://github.com/zhandouxiaojiji/behavior3editor#readme",
"devDependencies": {
"@stylistic/eslint-plugin-js": "^1.8.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^3.1.0",
"copy-files-from-to": "^3.11.0",
"electron": "^30.3.1",
"electron-builder": "^24.13.3",
"eslint": "^8.57.0",
"eslint-plugin-react-refresh": "^0.4.9",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.77.8",
"typescript": "^5.5.4",
"vite": "^4.5.3",
"vite-electron-plugin": "^0.8.3",
"vite-plugin-electron": "^0.28.7",
"vite-plugin-electron-renderer": "^0.14.5"
},
"dependencies": {
"@ant-design/icons": "^5.4.0",
"@antv/g6": "^4.8.24",
"@electron/remote": "github:electron/remote",
"@types/electron-localshortcut": "^3.1.3",
"@types/node": "^20.14.14",
"ahooks": "^3.8.0",
"antd": "^5.20.0",
"electron-localshortcut": "^3.2.1",
"electron-updater": "^6.3.2",
"i18next": "^23.12.2",
"i18next-browser-languagedetector": "^7.2.1",
"i18next-http-backend": "^2.5.2",
"json-stable-stringify": "^1.1.1",
"react-hotkeys-hook": "^4.5.0",
"react-i18next": "^14.1.3",
"react-icons": "^5.2.1",
"react-markdown": "^9.0.1",
"react-merge-refs": "^2.1.1",
"ts-key-enum": "^2.0.12",
"use-force-update": "^1.0.11",
"usehooks-ts": "^3.1.0",
"zustand": "^4.5.4"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"copyFilesSettings": {
"whenFileExists": "overwrite"
},
"copyFiles": [
{
"from": "pre-commit",
"to": ".git/hooks/pre-commit"
}
]
}