-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.23 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@pencil.js/spritesheet",
"version": "1.5.1",
"description": "Pack some images into a spritesheet.",
"keywords": [
"spritesheet",
"texture atlas",
"image",
"pack",
"json"
],
"main": "./src/index.js",
"module": "./src/index.js",
"exports": {
"import": "./src/index.js"
},
"files": [
"src"
],
"type": "module",
"scripts": {
"test": "ava"
},
"eslintConfig": {
"extends": "@gmartigny/eslint-config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pencil-js/spritesheet.git"
},
"publishConfig": {
"access": "public"
},
"author": "GMartigny",
"license": "MIT",
"bugs": {
"url": "https://github.com/pencil-js/spritesheet/issues"
},
"homepage": "https://github.com/pencil-js/spritesheet",
"funding": {
"url": "https://github.com/pencil-js/spritesheet?sponsor=1"
},
"dependencies": {
"bin-pack": "^1.0.2",
"canvas": "^2.7.0",
"detect-edges": "^1.0.1"
},
"devDependencies": {
"@gmartigny/eslint-config": "^1.6.0",
"ava": "^3.15.0",
"eslint": "^7.23.0"
}
}