-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.72 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.72 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
{
"name": "gamescript",
"version": "3.0.1",
"description": "Cross-platform dialogue authoring system",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -r build",
"build:flatbuffers": "flatc --ts -o core/generated/ts/src core/schema/snapshot.fbs && ./runtimes/unity/generate-flatsharp.sh && flatc --cpp -o runtimes/godot/gdextension/src/generated core/schema/snapshot.fbs && flatc --cpp -o runtimes/unreal/Source/GameScript/Private/Generated core/schema/snapshot.fbs",
"build:vscode": "pnpm --filter @gamescript/shared build && pnpm --filter @gamescript/ui build && pnpm --filter ./plugins/vscode build",
"build:rider": "pnpm --filter @gamescript/shared build && pnpm --filter @gamescript/ui build && cd plugins/rider && ./gradlew buildPlugin",
"build:godot": "flatc --cpp -o runtimes/godot/gdextension/src/generated core/schema/snapshot.fbs && cd runtimes/godot/gdextension && scons target=template_debug && scons target=template_release",
"build:unreal": "flatc --cpp -o runtimes/unreal/Source/GameScript/Private/Generated core/schema/snapshot.fbs && cd runtimes/unreal && ./build.sh",
"dev": "pnpm -r --parallel dev",
"dev:rider": "pnpm --filter @gamescript/ui build && cd plugins/rider && ./gradlew runIde",
"lint": "pnpm -r lint",
"format": "prettier --write .",
"test": "pnpm -r test",
"clean": "pnpm -r clean",
"package:vscode": "pnpm build && pnpm --filter ./plugins/vscode package",
"package:rider": "pnpm run build:rider"
},
"devDependencies": {
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@vscode/sqlite3",
"esbuild"
]
}
}