-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 742 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 742 Bytes
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
{
"name": "txt-svg",
"version": "0.0.1",
"license": "ISC",
"description": "a simple utility CLI tool to convert ASCII file to a animated SVG",
"keywords": [],
"author": "Koalhack",
"homepage": "https://github.com/Koalhack/TextToSVG#readme",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Koalhack/TextToSVG.git"
},
"bugs": {
"url": "https://github.com/Koalhack/TextToSVG/issues"
},
"main": "./dist/main.js",
"scripts": {
"build": "tsc",
"prepare": "npm run build"
},
"bin": "./dist/main.js",
"devDependencies": {
"@types/node": "^22.14.1",
"prettier": "^3.5.3",
"typescript": "^5.8.3"
},
"dependencies": {
"commander": "^13.1.0"
}
}