-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.32 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
{
"name": "space-explorer",
"version": "1.5.1",
"author": "Douwe de Vries",
"license": "MIT",
"private": true,
"packageManager": "bun@1.3.5",
"type": "module",
"scripts": {
"dev": "vite",
"test": "bun scripts/run-tests.ts",
"test:e2e": "bun run test:e2e:fast && bun run test:e2e:performance",
"test:e2e:fast": "playwright test --project=chromium-desktop --project=chromium-mobile --project=chromium-desktop-visual --project=chromium-mobile-visual",
"test:e2e:smoke": "playwright test --project=chromium-desktop --project=chromium-mobile",
"test:e2e:visual": "playwright test --project=chromium-desktop-visual --project=chromium-mobile-visual",
"test:e2e:performance": "playwright test --project=chromium-desktop-performance --project=chromium-mobile-performance --workers=1",
"test:e2e:evidence": "bun run test:e2e:visual && bun run test:e2e:performance",
"test:e2e:desktop": "playwright test --project=chromium-desktop",
"test:e2e:mobile": "playwright test --project=chromium-mobile",
"typecheck": "node ./node_modules/@typescript/native/bin/tsc -p tsconfig.json && node ./node_modules/@typescript/native/bin/tsc -p tsconfig.test.json",
"typecheck:ts6": "node ./node_modules/typescript/bin/tsc --stableTypeOrdering -p tsconfig.json && node ./node_modules/typescript/bin/tsc --stableTypeOrdering -p tsconfig.test.json",
"build": "node ./node_modules/@typescript/native/bin/tsc -p tsconfig.json && vite build",
"bundle:report": "bun scripts/bundle-report.ts",
"bundle:check": "bun scripts/bundle-report.ts --check",
"preview": "vite preview",
"lint": "eslint .",
"knip": "knip",
"levels:validate": "bun scripts/validateLevels.ts"
},
"knip": {
"entry": [
"index.html",
"scripts/**/*.ts",
"tests/**/*.test.ts"
],
"project": [
"src/**/*.ts",
"tests/**/*.ts",
"tests/**/*.d.ts",
"scripts/**/*.ts"
],
"ignoreBinaries": [
"cwebp"
]
},
"dependencies": {
"phaser": "4.2.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.0",
"@types/bun": "^1.3.14",
"@typescript/native": "npm:typescript@7.0.2",
"eslint": "^10.8.0",
"globals": "^17.8.0",
"knip": "^6.29.0",
"typescript": "6.0.3",
"typescript-eslint": "^8.65.0",
"vite": "^8.1.5"
}
}