-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.5 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@basalt-lab/basalt-logger",
"version": "1.11.3",
"description": "Logger module for Basalt Framework",
"type": "module",
"types": "./build/index.d.ts",
"exports": {
"./strategy": "./build/core/strategy/index.js",
"./logger": "./build/core/index.js",
"./error": "./build/error/index.js",
"./error/key": "./build/error/key/index.js",
"./i18n": "./build/i18n/index.js",
"./types": "./build/types/index.js",
".": "./build/index.js"
},
"scripts": {
"dev": "bun --watch source/index.ts",
"build": "bun bundler.ts",
"start": "bun build/index.js",
"test": "bun test --coverage",
"docs": "typedoc",
"fix-lint": "eslint --fix ./source",
"lint": "eslint ./source"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Basalt-Lab/basalt-logger.git"
},
"keywords": [
"basalt-logger",
"basalt",
"logger"
],
"author": "Ruby",
"license": "MIT",
"homepage": "https://github.com/Basalt-Lab/basalt-logger#readme",
"bugs": {
"url": "https://github.com/Basalt-Lab/basalt-logger/issues"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@stylistic/eslint-plugin": "^2.12.1",
"@types/bun": "^1.1.15",
"@types/node": "^22.10.5",
"bun-plugin-dts": "^0.3.0",
"eslint-plugin-tsdoc": "^0.4.0",
"eslint": "^9.17.0",
"typescript-eslint": "^8.19.1",
"typedoc": "^0.27.6"
},
"peerDependencies": {
"typescript": "^5.7.2"
},
"changelog": {
"types": {
"feat": {
"title": "🚀 Enhancements",
"semver": "minor"
},
"perf": {
"title": "⚡ Performance",
"semver": "patch"
},
"fix": {
"title": "🔧 Fixes",
"semver": "patch"
},
"refactor": {
"title": "🧹 Refactors",
"semver": "patch"
},
"docs": {
"title": "📖 Documentation",
"semver": "patch"
},
"build": {
"title": "📦 Build",
"semver": "patch"
},
"types": {
"title": "🌊 Types",
"semver": "patch"
},
"chore": {
"title": "🦉 Chore"
},
"examples": {
"title": "🏀 Examples"
},
"test": {
"title": "🧪 Tests"
},
"style": {
"title": "🎨 Styles"
},
"ci": {
"title": "🤖 CI"
}
},
"templates": {
"commitMessage": "chore(🦉): v{{newVersion}}",
"tagMessage": "v{{newVersion}}",
"tagBody": "v{{newVersion}}"
}
}
}