| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- {
- "name": "newbie-guide-plugin",
- "version": "1.0.0",
- "description": "A comprehensive newbie guide system plugin for Cocos Creator games",
- "main": "scripts/GuideManager.ts",
- "keywords": [
- "cocos-creator",
- "game",
- "tutorial",
- "guide",
- "newbie",
- "plugin",
- "typescript"
- ],
- "author": "Game Developer",
- "license": "MIT",
- "engines": {
- "cocos-creator": ">=2.4.0"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/your-username/newbie-guide-plugin.git"
- },
- "bugs": {
- "url": "https://github.com/your-username/newbie-guide-plugin/issues"
- },
- "homepage": "https://github.com/your-username/newbie-guide-plugin#readme",
- "files": [
- "scripts/",
- "resources/",
- "prefabs/",
- "examples/",
- "docs/",
- "README.md",
- "CHANGELOG.md",
- "LICENSE"
- ],
- "scripts": {
- "build": "echo 'Building plugin...'",
- "test": "echo 'Running tests...'",
- "package": "node package-script.js",
- "install-example": "echo 'Installing example files...'"
- },
- "devDependencies": {
- "@types/node": "^14.0.0"
- },
- "peerDependencies": {
- "cocos-creator": ">=2.4.0"
- },
- "cocosCreator": {
- "version": ">=2.4.0",
- "pluginType": "asset",
- "category": "gameplay",
- "features": [
- "newbie-guide",
- "tutorial-system",
- "step-management",
- "data-persistence",
- "ui-guidance"
- ]
- },
- "config": {
- "supportedLanguages": ["zh-CN", "en-US"],
- "minGameVersion": "1.0.0",
- "maxGameVersion": "*"
- },
- "installation": {
- "steps": [
- "1. Extract the plugin to your project's assets folder",
- "2. Import the GuideManager script in your main scene",
- "3. Configure guide steps in guide_config.json",
- "4. Initialize the guide system in your game startup code"
- ]
- },
- "changelog": {
- "1.0.0": {
- "date": "2024-01-15",
- "changes": [
- "Initial release",
- "Core guide system implementation",
- "Basic and advanced guide steps",
- "Data persistence system",
- "UI controller with Spine animations",
- "Comprehensive documentation and examples"
- ]
- }
- }
- }
|