-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.31 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
{
"name": "@guiiai/logg",
"type": "module",
"version": "1.0.6",
"packageManager": "[email protected]",
"description": "Yet another simple, nearly zero dependency, structural log compliance logger implementation.",
"contributors": [
{
"name": "Neko Ayaka",
"author": "Neko Ayaka <[email protected]> (https://github.com/nekomeowww)"
},
{
"name": "RainbowBird",
"author": "RainbowBird <[email protected]> (https://github.com/RainbowBird)"
}
],
"license": "MIT",
"repository": "https://github.com/guiiai/logg",
"keywords": [
"logger",
"nodejs",
"javascript",
"typescript",
"guiiai"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"package:publish": "pnpm build && pnpm publish --access public --no-git-checks",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "2.21",
"bumpp": "^9.9.0",
"eslint": "8",
"picocolors": "^1.1.1",
"typescript": "^5.7.2",
"unbuild": "^2.0.0",
"vitest": "^2.1.8"
}
}