-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
118 lines (118 loc) · 2.93 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
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
{
"package_version": 2,
"version": "2.1.0",
"name": "yandex-games-sdk",
"private": true,
"description": "i18n:yandex-games-sdk.description",
"main": "./workspaces/electron-main/dist/src/main.js",
"author": "LisGames",
"editor": ">=3.6.0",
"license": "MIT",
"packageManager": "[email protected]",
"workspaces": [
"workspaces/*"
],
"scripts": {
"bundle": "turbo build && node scripts/bundle.mjs",
"build": "turbo build",
"build:watch": "turbo build:watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --check",
"format:fix": "prettier . --write"
},
"panels": {
"localization-editor": {
"title": "Localization Editor",
"type": "dockable",
"main": "workspaces/electron-main/dist/src/panels/localization-editor",
"size": {
"min-width": 400,
"min-height": 300,
"width": 1024,
"height": 600
}
}
},
"contributions": {
"builder": "workspaces/electron-main/dist/src/builder/index.js",
"server": "workspaces/electron-main/dist/src/server.js",
"scene": {
"script": "workspaces/electron-main/dist/src/scene/index.js"
},
"menu": [
{
"path": "i18n:menu.extension/Yandex.Games",
"label": "i18n:yandex-games-sdk.localization-editor",
"message": "open-localization-editor"
},
{
"path": "i18n:menu.extension/Yandex.Games",
"label": "i18n:yandex-games-sdk.generate-templates",
"message": "generate-templates"
},
{
"path": "i18n:menu.extension/Yandex.Games",
"label": "i18n:yandex-games-sdk.check-templates",
"message": "check-templates"
}
],
"messages": {
"open-localization-editor": {
"methods": [
"openLocalizationEditor"
]
},
"generate-templates": {
"methods": [
"generateTemplates"
]
},
"check-templates": {
"methods": [
"checkTemplates"
]
},
"get-l10n-bundle": {
"methods": [
"getL10NBundle"
]
}
},
"asset-db": {
"mount": {
"path": "./workspaces/static/assets",
"readonly": true,
"visible": "visibleL10nEditor",
"enable": "enableL10nEditor"
}
},
"profile": {
"project": {
"enableL10nEditor": {
"default": true
},
"visibleL10nEditor": {
"default": true
}
}
}
},
"dependencies": {
"@cocos/creator-types": "^3.8.4",
"@types/ysdk": "^1.0.7"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"archiver": "^6.0.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"turbo": "^2.1.2",
"typescript": "^5.0.4",
"typescript-eslint": "^8.18.2"
}
}