exafunction--windsurf-demo
af5af0c445
Implemented score decay mechanics where cells gradually lose score over time. Larger cells decay faster based on their size, adding a strategic element to gameplay. Added comprehensive unit tests for the feature.
27 行
581 B
JSON
27 行
581 B
JSON
{
|
|
"name": "windsurf-demo",
|
|
"version": "1.0.0",
|
|
"description": "Agar.io clone game",
|
|
"main": "app.py",
|
|
"scripts": {
|
|
"test": "jest"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.23.2",
|
|
"@babel/preset-env": "^7.23.2",
|
|
"babel-jest": "^29.7.0",
|
|
"babel-plugin-rewire": "^1.2.0",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^29.7.0"
|
|
},
|
|
"jest": {
|
|
"testEnvironment": "jsdom",
|
|
"moduleNameMapper": {
|
|
"\\.(css|less|scss|sass)$": "<rootDir>/__mocks__/styleMock.js"
|
|
},
|
|
"transform": {
|
|
"^.+\\.js$": "babel-jest"
|
|
}
|
|
}
|
|
}
|