-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (38 loc) · 1006 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "efficient-rect-packer",
"version": "1.1.1",
"description": "An efficient 2D bin packing algorithm designed for optimal arrangement of rectangular items on fixed-size surfaces, ideal for applications like image layout on paper sheets, minimizing waste and maximizing space utilization.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"rollup": "npx rollup dist/index.js --file dist/index.cjs --format cjs"
},
"keywords": [
"packer",
"rect-packer",
"bin-packing",
"2d-bin-packing",
"rectangles-packer",
"pack"
],
"author": "SciSaif",
"license": "ISC",
"devDependencies": {
"rollup": "^4.4.0",
"typescript": "^5.2.2"
}
,
"repository": {
"type": "git",
"url": "https://github.com/SciSaif/efficient-rect-packer.git"
},
"files": [
"dist/**/*"
]
}