-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
67 lines (67 loc) · 1.68 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@bscotch/spritely",
"version": "3.4.0",
"description": "Spritely: Image correction and cleanup for 2D video game sprites",
"keywords": [
"sprite",
"texture page",
"sprite sheet",
"image",
"2D",
"game engine",
"art",
"art asset",
"pipeline",
"gamemaker"
],
"homepage": "https://github.com/bscotch/stitch/tree/develop/packages/spritely#readme",
"repository": {
"type": "git",
"url": "https://github.com/bscotch/stitch.git",
"directory": "packages/spritely"
},
"license": "MIT",
"author": "Adam Coster (https://www.bscotch.net/about)",
"type": "module",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js"
}
},
"main": "./build/index.js",
"bin": "./spritely.mjs",
"scripts": {
"build": "tsc --build",
"clean": "rimraf build dist *.tsbuildinfo **/*.tsbuildinfo",
"test": "mocha --config ../../config/.mocharc.cjs",
"test:dev": "mocha --config ../../config/.mocharc.cjs --forbid-only=false --parallel=false --timeout=9999999999",
"watch": "tsc --build --watch"
},
"dependencies": {
"@bscotch/debounce-watch": "^1.1.0",
"@bscotch/pathy": "^2.12.0",
"@bscotch/utility": "^7.2.0",
"commander": "11.1.0",
"fs-extra": "11.1.1",
"image-js": "0.35.5",
"image-size": "1.0.2",
"tslib": "^2.6.2",
"yaml": "2.3.4"
},
"devDependencies": {
"@types/chai": "^4.3.10",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.4",
"chai": "^4.3.10",
"mocha": "^10.2.0",
"rimraf": "^5.0.5",
"typescript": "5.2.2"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public"
}
}