zammy 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +349 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +4223 -0
- package/package.json +48 -0
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "zammy",
|
|
3
|
+
"version": "1.2.0",
|
|
4
|
+
"description": "Your slice-of-life terminal companion",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"zammy": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"type": "module",
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "tsup",
|
|
12
|
+
"dev": "tsup --watch",
|
|
13
|
+
"start": "node dist/index.js",
|
|
14
|
+
"test": "vitest",
|
|
15
|
+
"test:run": "vitest run",
|
|
16
|
+
"test:coverage": "vitest run --coverage"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"cli",
|
|
20
|
+
"terminal",
|
|
21
|
+
"ascii-art",
|
|
22
|
+
"utility"
|
|
23
|
+
],
|
|
24
|
+
"author": "Aayush Adhikari",
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "git+https://github.com/aayushadhikari7/zammy-cli.git"
|
|
29
|
+
},
|
|
30
|
+
"bugs": {
|
|
31
|
+
"url": "https://github.com/aayushadhikari7/zammy-cli/issues"
|
|
32
|
+
},
|
|
33
|
+
"homepage": "https://github.com/aayushadhikari7/zammy-cli#readme",
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@types/figlet": "^1.5.8",
|
|
36
|
+
"@types/node": "^20.10.0",
|
|
37
|
+
"tsup": "^8.0.1",
|
|
38
|
+
"typescript": "^5.3.0",
|
|
39
|
+
"vitest": "^4.0.16"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"boxen": "^7.1.1",
|
|
43
|
+
"chalk": "^5.3.0",
|
|
44
|
+
"figlet": "^1.7.0",
|
|
45
|
+
"jimp": "^0.22.12",
|
|
46
|
+
"ora": "^8.0.1"
|
|
47
|
+
}
|
|
48
|
+
}
|