generated from HeesuKim0203/npm-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.47 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "vivid-console",
"version": "1.0.5",
"description": "Vivid Console is an ideal tool for those who want to add a splash of color to their console outputs. It enables styling in both Terminal and Web Console environments, making your logs more visually appealing and easier to read.",
"types": "./lib/cjs/types/index.d.ts",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"browser": {
"vivid-console": "./dist/index.bundle.js"
},
"scripts": {
"test": "ts-node ./scripts/test.ts && node ./scripts/test.js",
"clean": "rm -rf ./lib && rm -rf ./dist",
"build": "npm run clean && webpack --mode production"
},
"keywords": [
"color",
"console",
"styling",
"log",
"javascript",
"terminal"
],
"author": "heesukim",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"lib/**/*",
"dist/**/*"
],
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.js"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"devDependencies": {
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vivid-console": "file:vivid-console-1.0.1.tgz",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"repository": {
"type": "git",
"url": "https://github.com/HeesuKim0203/vivid-console.git"
}
}