-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1002 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1002 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "color-log-package",
"version": "1.0.5",
"description": "Package to style the logs of your codes and terminals",
"author": "Gabriel Escabora <gabrielescabora@gmail.com>",
"repository": "git@github.com:escabora/color-log.git",
"license": "MIT",
"keywords": [
"javascript",
"cli",
"color",
"terminal",
"log",
"console-log"
],
"exports": {
".": {
"import": "./dist/main.es.js",
"require": "./dist/main.cjs.js"
}
},
"main": "./dist/main.cjs.js",
"module": "./dist/main.es.js",
"typings": "./dist/main.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"build:watch": "tsc && vite build --watch",
"dev": "vite"
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.1",
"@types/node": "^17.0.35",
"prettier": "2.6.2",
"rollup-plugin-typescript-paths": "^1.3.0",
"tslib": "^2.4.0",
"typescript": "^4.7.2",
"vite": "^2.9.9"
}
}