-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 3.31 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 3.31 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
{
"name": "tlt",
"version": "0.1.0",
"description": "The Last Tracker - Modular game tracker supporting multiple games",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"predev": "npm run validate:autotracker-data && npm run generate:asset-versions && npm run generate:map-icons && npm run generate:map-schema && npm run generate:fallback-check",
"prebuild": "npm run validate:autotracker-data && npm run generate:asset-versions && npm run generate:map-icons && npm run generate:map-schema && npm run generate:fallback-check",
"dev": "vite",
"build": "vite build && python3 scripts/check_map_locations.py --build-warning-mode",
"build:check": "vite build",
"preview": "vite preview",
"generate:autotracker-data": "node --import tsx scripts/autotracker/generate_data.ts",
"generate:asset-versions": "node scripts/generate_public_image_asset_versions.ts",
"generate:map-icons": "node scripts/generate_map_icon_index.ts",
"generate:map-schema": "node scripts/generate_map_schema.ts",
"generate:fallback-check": "node scripts/check_fallback_assets.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write --cache",
"format:check": "prettier . --check --cache",
"type-check": "vue-tsc --noEmit --project tsconfig.app.json",
"validate:autotracker-data": "node --import tsx scripts/autotracker/validate_data.ts",
"audit:images": "node --import tsx scripts/audit_image_usage.ts",
"compare:settings": "node --import tsx scripts/compare_settings.ts",
"optimize:dirty-pngs": "bash scripts/optimize_dirty_pngs.sh",
"test:pathfinder": "node --import tsx scripts/pathfinder-tests/run_ootmm.ts tests/pathfinder/tests_silke.jsonc",
"test:pathfinder:web": "node --import tsx scripts/pathfinder-tests/run_silke_playwright.ts tests/pathfinder/tests_silke.jsonc",
"test:unit": "vitest run",
"test:server": "python3 -m unittest discover -s server -t . -p 'test_*.py'",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:ui": "playwright test --ui",
"test:e2e:install": "playwright install chromium",
"check-most:verify": "npm run generate:fallback-check && npm run type-check && npm run build:check",
"check-most:ci": "npm run format:check && npm run lint && npm run check-most:verify",
"check-most": "npm run format && npm run lint:fix && npm run check-most:verify",
"check-all": "npm run check-most && npm run test:unit && npm run test:server && npm run test:pathfinder && npm run test:e2e"
},
"dependencies": {
"lodash": "^4.17.21",
"pako": "^2.1.0",
"pinia": "^3.0.4",
"uint8array-extras": "^1.0.0",
"vue": "^3.4.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@playwright/test": "^1.55.0",
"@types/node": "^25.0.10",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"@vitejs/plugin-vue": "^6.0.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.22.0",
"globals": "^15.15.0",
"jsdom": "^26.1.0",
"prettier": "^3.4.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.21.0",
"typescript": "~5.9.0",
"vite": "^8.0.8",
"vitest": "^4.1.0",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^3.0.0"
}
}