-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.84 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.84 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@pinkpixel/pixelpop",
"version": "1.0.1",
"description": "A terminal utility for displaying and animating images, GIFs and photo sequences with ANSI color support ",
"license": "Apache-2.0",
"homepage": "https://npmjs.com/package/@pinkpixel/pixelpop",
"repository": "https://github.com/pinkpixel-dev/pixelpop",
"issues": "https://github.com/pinkpixel-dev/pixelpop/issues",
"author": {
"name": "Pink Pixel",
"email": "admin@pinkpixel.dev",
"url": "https://pinkpixel.dev"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"sideEffects": false,
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "npm run build",
"typecheck": "tsc --noEmit"
},
"files": [
"dist"
],
"keywords": [
"terminal",
"image",
"term",
"iterm",
"shell",
"console",
"command-line",
"img",
"pic",
"picture",
"photo",
"ansi",
"escape",
"jpg",
"jpeg",
"display",
"show",
"pixels",
"gif",
"animation",
"sequence"
],
"dependencies": {
"chalk": "^5.6.2",
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.3",
"image-dimensions": "^2.5.0",
"jimp": "^1.6.0",
"log-update": "^7.0.0",
"term-img": "^7.0.0"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.27",
"@types/node": "^24.5.2",
"eslint": "^9.36.0",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"prettier-plugin-packagejson": "^2.5.19",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.0"
}
}