-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
41 lines (41 loc) · 905 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
40
41
{
"name": "potpack",
"version": "2.0.0",
"description": "A tiny library for packing 2D rectangles (for sprite layouts)",
"main": "index.js",
"type": "module",
"exports": "./index.js",
"types": "index.d.ts",
"sideEffects": false,
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"pretest": "eslint *.js",
"test": "node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mapbox/potpack.git"
},
"keywords": [
"algorithms",
"sprites",
"bin packing",
"geometry",
"rectangles"
],
"author": "Vladimir Agafonkin",
"license": "ISC",
"bugs": {
"url": "https://github.com/mapbox/potpack/issues"
},
"homepage": "https://mapbox.github.io/potpack/",
"devDependencies": {
"@mapbox/shelf-pack": "^3.2.0",
"bin-pack": "^1.0.2",
"eslint": "^9.5.0",
"eslint-config-mourner": "^4.0.1"
}
}