-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 3.55 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 3.55 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
73
74
75
76
77
78
79
{
"name": "wynisbuff2",
"description": "WynIsBuff2 - An extreme buff adventure game with triple jump mechanics and maximum gaming power!",
"version": "2.0.0",
"packageManager": "bun@1.3.14",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/hubofwyn/WynIsBuff2.git"
},
"author": "WynIsBuff2 Team",
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"bugs": {
"url": "https://github.com/hubofwyn/WynIsBuff2/issues"
},
"homepage": "https://github.com/hubofwyn/WynIsBuff2#readme",
"scripts": {
"dev": "bun log.js dev & bunx --bun vite --config vite/config.dev.mjs",
"build": "bun log.js build & bunx --bun vite build --config vite/config.prod.mjs",
"dev-nolog": "bunx --bun vite --config vite/config.dev.mjs",
"build-nolog": "bunx --bun vite build --config vite/config.prod.mjs",
"test": "bun test",
"lint": "bunx --bun eslint . --ext .js,.mjs",
"lint:fix": "bunx --bun eslint . --ext .js,.mjs --fix",
"lint:boundaries": "bunx --bun eslint src --rule 'boundaries/element-types: error'",
"format": "bunx --bun prettier --write \"**/*.{js,mjs,json}\" && bunx --bun markdownlint-cli2 --fix \"**/*.md\"",
"format:check": "bunx --bun prettier --check \"**/*.{js,mjs,json}\" && bunx --bun markdownlint-cli2 \"**/*.md\"",
"lint:md": "bunx --bun markdownlint-cli2 \"**/*.md\"",
"lint:md:fix": "bunx --bun markdownlint-cli2 --fix \"**/*.md\"",
"generate-assets": "bun scripts/generate-assets.js",
"validate-assets": "bun scripts/validate-assets.js",
"arch:snapshot": "bun scripts/validate-architecture.js",
"arch:validate": "bun scripts/validate-architecture-simple.js",
"arch:check": "bun run arch:snapshot && bun run arch:validate",
"arch:health": "bun scripts/architecture-health.js",
"deps:check": "bunx --bun dependency-cruise src --config ./architecture/rules/depcruise.config.cjs",
"deps:graph": "bunx --bun dependency-cruise src --config ./architecture/rules/depcruise.config.cjs --output-type dot | dot -T svg > docs/architecture/dependency-graph.svg",
"deps:dead": "bunx --bun knip --reporter json > docs/architecture/dead-code-report.json",
"docs:extract": "bun scripts/extract-docs.js",
"docs:index": "bun scripts/generate-doc-index.js",
"docs:update": "bun run docs:extract && bun run docs:index",
"validate:level": "bun scripts/validate-level.js",
"validate:levels": "bun scripts/validate-level.js all",
"prepare": "bunx --bun husky"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"dependency-cruiser": "^17.4.3",
"eslint": "^9.39.5",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-boundaries": "^5.4.0",
"eslint-plugin-import": "^2.32.0",
"husky": "^9.1.7",
"knip": "^5.88.1",
"lint-staged": "^15.5.2",
"markdownlint-cli2": "^0.20.0",
"prettier": "^3.9.5",
"terser": "^5.49.0",
"vite": "^7.3.6",
"yaml": "^2.9.0"
},
"dependencies": {
"@dimforge/rapier2d-compat": "^0.19.3",
"howler": "^2.2.4",
"phaser": "^3.90.0"
},
"overrides": {
"handlebars": "4.7.9"
},
"alias": {
"@features": "./src/features",
"@core": "./src/core",
"@observability": "./src/observability",
"@scenes": "./src/scenes"
}
}