-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.7 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.7 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
{
"name": "textmode.export.js",
"version": "1.2.1",
"description": "Export plugin for textmode.js - Save your creations as images, GIFs, videos, SVG, and plain text.",
"type": "module",
"types": "./dist/types/index.d.ts",
"main": "./dist/textmode.export.umd.js",
"module": "./dist/textmode.export.esm.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/textmode.export.esm.js",
"require": "./dist/textmode.export.umd.js"
}
},
"scripts": {
"dev": "vite --port 5174",
"build": "vite build && tsc",
"preview": "vite preview",
"build:docs": "typedoc",
"dev:docs": "typedoc --watch"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^24.5.2",
"terser": "^5.44.0",
"typedoc": "^0.28.13",
"typedoc-plugin-frontmatter": "^1.3.1",
"typedoc-plugin-markdown": "^4.9.0",
"typedoc-vitepress-theme": "^1.1.2",
"typescript": "~5.8.3",
"vite": "^7.1.7",
"vite-plugin-css-injected-by-js": "^3.5.2"
},
"dependencies": {
"gifenc": "^1.0.1",
"webm-writer": "^1.0.0",
"textmode.js": ">=0.10.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/humanbydefinition/textmode.export.js.git"
},
"keywords": [
"textmode",
"textmode.js",
"ascii",
"petscii",
"export",
"plugin",
"gif",
"video",
"webm",
"svg",
"image",
"png",
"jpg",
"webp",
"creative-coding",
"canvas"
],
"author": "humanbydefinition",
"license": "MIT",
"bugs": {
"url": "https://github.com/humanbydefinition/textmode.export.js/issues"
},
"homepage": "https://code.textmode.art",
"files": [
"dist"
]
}