36 lines
834 B
JSON
36 lines
834 B
JSON
{
|
|
"name": "whalehunting-game",
|
|
"version": "1.2.0",
|
|
"description": "A Monkey Island-style point-and-click adventure game about 18th century whaling",
|
|
"main": "src/main.js",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"test": "vitest",
|
|
"test:ui": "vitest --ui",
|
|
"test:coverage": "vitest --coverage",
|
|
"test:e2e": "playwright test",
|
|
"test:e2e:ui": "playwright test --ui",
|
|
"test:all": "npm run test && npm run test:e2e"
|
|
},
|
|
"keywords": [
|
|
"game",
|
|
"phaser",
|
|
"adventure",
|
|
"point-and-click"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"phaser": "^3.80.1"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.57.0",
|
|
"@vitest/ui": "^4.0.16",
|
|
"jsdom": "^27.3.0",
|
|
"vite": "^5.0.0",
|
|
"vitest": "^4.0.16"
|
|
}
|
|
}
|