-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.83 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.83 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "vilog",
"version": "0.0.1-beta.3",
"description": "Fast logger for Node.js with color output, custom layouts, and profiling",
"keywords": [
"log",
"debug",
"debugger",
"profiling"
],
"license": "ISC",
"author": "webdiscus (https://github.com/webdiscus)",
"maintainers": [
"webdiscus (https://github.com/webdiscus)"
],
"homepage": "https://github.com/webdiscus/vilog",
"bugs": {
"url": "https://github.com/webdiscus/vilog/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webdiscus/vilog.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"sideEffects": false,
"type": "module",
"types": "./src/index.d.ts",
"exports": {
".": {
"types": "./src/index.d.ts",
"import": "./src/index.mjs",
"require": "./src/index.cjs"
}
},
"scripts": {
"build": "rollup -c",
"postinstall": "npm run build && npm i vilog -D",
"test": "FORCE_COLOR=3 vitest run",
"publish:public": "(npm run build) && npm publish ./dist --access public",
"publish:beta": "(npm run build) && npm publish ./dist --tag beta"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"ansis": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^22.15.17",
"@vitest/coverage-v8": "^3.1.1",
"debug": "^4.4.1",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"rollup": "^4.40.2",
"rollup-plugin-copy": "^3.5.0",
"terser": "^5.39.0",
"typescript": "5.4.5",
"vilog": "file:dist",
"vitest": "^3.1.3"
},
"overrides": {
"rollup-plugin-copy": {
"globby": "^11.0.0"
}
}
}