@paxperscientiam/generate-phaser3-filepack
Advanced tools
Comparing version 6.4.1 to 6.6.0
@@ -5,2 +5,3 @@ { | ||
"main": "dist/index.mjs", | ||
"types": "src/index.d.ts", | ||
"repository": { | ||
@@ -14,7 +15,7 @@ "type": "git", | ||
"test": "node ./dist/index.mjs gen-filepack.json", | ||
"prepack": "pnpm run build" | ||
"prepublishOnly": "pnpm run build" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^20.9.0", | ||
"ts-to-zod": "^3.2.0", | ||
"@types/node": "^20.11.30", | ||
"ts-to-zod": "^3.7.3", | ||
"tsup": "^7.2.0" | ||
@@ -32,3 +33,3 @@ }, | ||
], | ||
"version": "6.4.1" | ||
"version": "6.6.0" | ||
} |
/** | ||
@toExtract | ||
*/ | ||
*/ | ||
export interface IConfigAssetTarget { | ||
@@ -11,2 +11,3 @@ key: string | ||
ignoredPaths?: string|string[] | ||
config?: any // phaser specific | ||
} | ||
@@ -70,2 +71,20 @@ | ||
*/ | ||
export type IPhaserFilePackSpriteSheetAsset = { | ||
type: "spritesheet" | ||
key: sring | ||
url: string | ||
config: { | ||
frameConfig: { | ||
frameWidth: number, | ||
frameHeight: number, | ||
startFrame: number, | ||
endFrame: number | ||
} | ||
} | ||
} | ||
/** | ||
* @toExtract | ||
*/ | ||
export type IPhaserFilePackAsset = (IPhaserFilePackGenericAsset | IPhaserFilePackBinaryAsset | IPhaserFilePackVideoAsset) & {isDirty?:boolean, focalKey?:string} | ||
@@ -72,0 +91,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
21408
591
1