-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 962 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 962 Bytes
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
{
"name": "smart-logger-ts",
"version": "1.0.6",
"description": "Flexible and powerful logger for TypeScript projects with visual and console modes",
"main": "./dist/main.umd.js",
"module": "./dist/main.es.js",
"types": "./dist/main.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/main.es.js",
"require": "./dist/main.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"repository": {
"type": "git",
"url": "https://github.com/magiskdev/smart-logger-ts"
},
"keywords": [
"logger",
"typescript",
"console",
"visual-logger"
],
"author": "Kushnikov Alexandr",
"license": "MIT",
"devDependencies": {
"sass-embedded": "^1.80.6",
"typescript": "~5.6.2",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-legacy": "^2.1.0",
"vite-plugin-lib-inject-css": "^2.1.1"
}
}