-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.06 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.06 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
{
"name": "route-engine-js",
"version": "1.4.1",
"description": "A lightweight Visual Novel engine built in JavaScript for creating interactive narrative games with branching storylines",
"repository": {
"type": "git",
"url": "git+https://github.com/RouteVN/route-engine.git"
},
"bugs": {
"url": "https://github.com/RouteVN/route-engine/issues"
},
"homepage": "https://github.com/RouteVN/route-engine#readme",
"keywords": [
"game-engine",
"visual-novel",
"visual-novel-games",
"visual-novel-engine",
"interactive-fiction-engine",
"visual-novel-maker",
"visual-novel-framework",
"visual-novel-editor",
"visual-novel-tools",
"visual-novel-creator"
],
"type": "module",
"main": "dist/RouteEngine.js",
"exports": {
".": "./dist/RouteEngine.js"
},
"files": [
"dist/",
"README.md"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky",
"prepack": "bun run build",
"build": "bun run esbuild.js",
"lint": "bun run prettier src -c",
"lint:fix": "bun run prettier src -w",
"coverage": "bun run vitest run --coverage",
"vt:generate": "bun run esbuild.js && rtgl vt generate",
"vt:docker": "bun run esbuild.js && docker run --rm ${VT_DOCKER_ARGS:-} --user $(id -u):$(id -g) -e RTGL_VT_DEBUG=true -v \"$PWD:/app\" -w /app docker.io/han4wluc/rtgl:playwright-v1.57.0-rtgl-v1.0.10 rtgl vt screenshot --wait-event vt:ready --concurrency ${VT_DOCKER_CONCURRENCY:-2} --timeout ${VT_DOCKER_TIMEOUT:-60000}",
"vt:report": "bun run vt:docker && rtgl vt report --diff-threshold ${VT_REPORT_DIFF_THRESHOLD:-0.8}",
"vt:accept": "rtgl vt accept",
"serve": "bun run vt:generate && bunx serve -p 3004 .rettangoli/vt/_site"
},
"dependencies": {
"immer": "^10.1.1",
"jempl": "1.0.0",
"js-yaml": "^4.1.0",
"puty": "^0.1.1"
},
"devDependencies": {
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"ajv": "^8.18.0",
"husky": "^9.1.7",
"prettier": "^3.7.4",
"route-graphics": "1.7.5",
"vitest": "^4.0.16"
}
}