29 lines
619 B
JSON
29 lines
619 B
JSON
{
|
|
"name": "3d-flight-simulator",
|
|
"version": "1.0.0",
|
|
"description": "3D Flight Simulator with retro 80s aesthetic",
|
|
"main": "src/js/main.js",
|
|
"scripts": {
|
|
"test": "jest",
|
|
"test:e2e": "playwright test",
|
|
"test:debug": "playwright test --debug",
|
|
"test:all": "npm test && npm run test:e2e"
|
|
},
|
|
"keywords": [
|
|
"3d",
|
|
"flight",
|
|
"simulator",
|
|
"threejs"
|
|
],
|
|
"author": "RetroWeb Games",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"three": "^0.135.0"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.28.0",
|
|
"jest": "^29.0.0",
|
|
"jest-environment-jsdom": "^30.3.0"
|
|
}
|
|
}
|