-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.31 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.31 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "asciify-engine",
"version": "1.0.80",
"description": "Framework-agnostic ASCII art engine. Convert images, videos, and GIFs into ASCII art rendered on canvas.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"prepublishOnly": "npm run build"
},
"keywords": [
"ascii",
"ascii-art",
"ascii-art-generator",
"image-to-ascii",
"video-to-ascii",
"gif-to-ascii",
"webcam-to-ascii",
"canvas",
"pixel-art",
"text-art",
"ascii-background",
"ascii-animation",
"character-art",
"ascii-renderer",
"ascii-converter",
"hover-effects",
"chroma-key",
"green-screen",
"embed-generator",
"image-to-text",
"photo-to-ascii",
"ascii-art-canvas",
"terminal-art",
"retro",
"matrix-effect",
"matrix-rain",
"ascii-video",
"ascii-webcam",
"ascii-image",
"ascii-gif",
"text-to-art",
"ascii-effect",
"ascii-filter",
"ascii-overlay",
"hero-background",
"animated-background",
"canvas-animation",
"creative-coding",
"generative-art",
"web-art",
"browser-art",
"ascii-embed",
"ascii-export",
"react-ascii",
"vue-ascii",
"svelte-ascii",
"nextjs-ascii",
"typescript",
"framework-agnostic",
"ascii-dots",
"dot-matrix",
"spotlight-effect",
"ascii-hover",
"interactive-art",
"ascii-text",
"figlet",
"banner-text",
"ascii-hero",
"landing-page-background",
"website-background",
"parallax-stars",
"aurora-effect",
"particle-effect",
"ascii-particles"
],
"author": "ayangabryl",
"license": "MIT",
"sideEffects": false,
"homepage": "https://asciify.org",
"repository": {
"type": "git",
"url": "https://github.com/ayangabryl/asciify-engine"
},
"dependencies": {
"gifuct-js": "^2.1.2"
},
"devDependencies": {
"terser": "^5.46.0",
"tsup": "^8.4.0",
"typescript": "~5.8.3"
}
}