style-logs 0.0.1 → 0.0.3

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "style-logs",
3
- "version": "0.0.1",
4
- "description": "Design your console/terminal in HTML style.",
3
+ "version": "0.0.3",
4
+ "description": "A progressive library to style console logs with ease.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
7
7
  "types": "./dist/index.d.ts",
@@ -13,16 +13,15 @@
13
13
  }
14
14
  },
15
15
  "files": [
16
- "dist",
17
- "fonts"
16
+ "dist"
18
17
  ],
19
18
  "scripts": {
20
19
  "build": "tsup",
21
20
  "build:watch": "tsup --watch",
22
21
  "deploy": "npm publish",
23
22
  "deploy:beta": "npm publish --tag beta",
24
- "test:m": "cd tests && node index.mjs",
25
- "test:c": "cd tests && node index.js"
23
+ "test:m": "cd Example && node index.mjs",
24
+ "test:c": "cd Example && node index.js"
26
25
  },
27
26
  "keywords": [
28
27
  "style-logs",
@@ -30,23 +29,18 @@
30
29
  "console",
31
30
  "style console"
32
31
  ],
33
- "author": "flameface",
32
+ "author": "kunalkandepatil",
34
33
  "license": "MIT",
35
34
  "devDependencies": {
36
- "@types/common-tags": "^1.8.4",
37
35
  "@types/node": "^20.12.7",
38
36
  "tsup": "^8.0.2",
39
37
  "typescript": "^5.4.5"
40
38
  },
41
- "dependencies": {
42
- "chalk": "^5.3.0",
43
- "common-tags": "^1.8.2"
44
- },
45
39
  "repository": {
46
40
  "type": "git",
47
- "url": "https://github.com/unburn/style-logs.git"
41
+ "url": "https://github.com/kunalkandepatil/style-logs.git"
48
42
  },
49
43
  "bugs": {
50
- "url": "https://github.com/unburn/style-logs/issues"
44
+ "url": "https://github.com/kunalkandepatil/style-logs/issues"
51
45
  }
52
46
  }