-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.16 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.16 KB
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": "vikus-viewer-script",
"version": "2.1.4",
"description": "Preprocessing scripts for vikus-viewer",
"author": {
"name": "Christopher Pietsch",
"url": "https://chrispie.com"
},
"keywords": [
"vikus-viewer",
"vikus-viewer-script",
"resize",
"spritesheet",
"textures",
"image-processing"
],
"homepage": "https://github.com/cpietsch/vikus-viewer-script",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/cpietsch/vikus-viewer-script.git"
},
"bin": {
"vikus-viewer-script": "bin/textures.js",
"vvs": "bin/textures.js"
},
"main": "src/index.js",
"exports": {
".": "./src/index.js",
"./textures": "./src/textures.js",
"./cascade": "./src/cascade.js"
},
"scripts": {
"start": "node bin/textures.js",
"test": "echo \"No tests yet\" && exit 0",
"prepublishOnly": "node -e \"require('./src/index.js')\""
},
"engines": {
"node": ">=20.3.0"
},
"type": "module",
"files": [
"bin",
"src",
"README.md"
],
"dependencies": {
"glob": "^13.0.6",
"sharp": "^0.34.5",
"sharpsheet": "^0.1.6",
"yargs": "^18.0.0"
}
}