aspect-grid-collageify 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "aspect-grid-collageify",
3
+ "version": "1.0.0",
4
+ "description": "A lightweight, pure frontend canvas-based smart photo collage engine supporting visual interactive editing and headless offscreen rendering.",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "unpkg": "dist/index.global.js",
8
+ "types": "dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js",
13
+ "default": "./dist/index.global.js"
14
+ }
15
+ },
16
+ "scripts": {
17
+ "dev": "vite",
18
+ "build": "tsup src/index.ts --format esm,cjs,iife --global-name AspectGridCollageify --dts --clean",
19
+ "prepublishOnly": "pnpm build",
20
+ "release": "pnpm publish"
21
+ },
22
+ "files": [
23
+ "dist",
24
+ "README.md",
25
+ "README_EN.md",
26
+ "LICENSE"
27
+ ],
28
+ "keywords": [
29
+ "collage",
30
+ "puzzle",
31
+ "canvas",
32
+ "aspect-ratio",
33
+ "grid",
34
+ "photo-collage",
35
+ "offscreen-rendering"
36
+ ],
37
+ "license": "MIT",
38
+ "devDependencies": {
39
+ "tsup": "^8.0.0",
40
+ "typescript": "^5.0.0",
41
+ "vite": "^5.0.0"
42
+ },
43
+ "pnpm": {
44
+ "onlyBuiltDependencies": [
45
+ "esbuild"
46
+ ]
47
+ }
48
+ }