-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.34 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
{
"name": "@raythurnevoid/rt0-logger",
"version": "3.1.0",
"description": "Customizable logger that shows log level",
"exports": {
"./log": "./log.js",
"./colors": "./colors.js",
"./utils": "./utils.js"
},
"scripts": {
"dev": "vite-node --watch ./src/index.ts",
"dev:inspect": "node --inspect-brk ./node_modules/vite-node/vite-node.mjs --watch ./src/index.ts",
"build": "vite build",
"preview": "node ./dist/index.js",
"package": "npm run build && copyfiles ./package.json ./dist && publint ./dist",
"lint": "prettier --plugin-search-dir . --check .",
"format": "prettier --plugin-search-dir . --write .",
"test": "vitest"
},
"type": "module",
"files": [
"./*"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"logging",
"logger",
"colors",
"levels",
"level"
],
"repository": {
"type": "git",
"url": "git+https://github.com/raythurnevoid/rt0-logger.git"
},
"bugs": {
"url": "https://github.com/raythurnevoid/rt0-logger/issues"
},
"author": "Ray Thurne",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.16.3",
"copyfiles": "^2.4.1",
"publint": "^0.1.11",
"typescript": "^5.0.4",
"vite": "^4.3.4",
"vite-node": "^0.31.0",
"vite-plugin-dts": "^2.3.0",
"vitest": "^0.31.0"
},
"dependencies": {
"chalk": "^5.2.0"
}
}