-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 1.01 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
{
"name": "gif-to-ansi",
"version": "0.1.1",
"description": "A site to convert a GIF into a low-res shell script.",
"scripts": {
"build": "npm run prettier:format && npm run build:esbuild",
"build:esbuild": "node esbuild.js prod",
"build:watch": "node esbuild.js dev watch",
"prettier:check": "prettier --config .prettierrc 'src/**/*' esbuild.js",
"prettier:format": "prettier --config .prettierrc 'src/**/*' esbuild.js --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dom111/gif-to-ansi.git"
},
"author": "dom111",
"license": "MIT",
"bugs": {
"url": "https://github.com/dom111/gif-to-ansi/issues"
},
"homepage": "https://github.com/dom111/gif-to-ansi#readme",
"dependencies": {
"@types/xterm": "^3.0.0",
"bootstrap": "^5.1.3",
"esbuild": "^0.12.1",
"esbuild-plugin-prettier": "^1.0.0",
"esbuild-sass-plugin": "^1.4.0",
"gifuct-js": "^2.1.1",
"prettier": "^2.3.0",
"xterm": "^4.16.0",
"xterm-addon-fit": "^0.5.0"
}
}