-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.15 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": "consol.js",
"author": "aprilsbloom",
"version": "1.0.7",
"description": "a customizable logging framework written in typescript",
"repository": {
"type": "git",
"url": "git+https://github.com/aprilsbloom/consol.git"
},
"keywords": [
"console",
"terminal",
"customizable",
"customisable",
"logging",
"logger",
"log"
],
"type": "module",
"module": "./esm/index.js",
"types": "./esm/index.d.ts",
"exports": {
".": {
"import": "./esm/index.js",
"types": "./esm/index.d.ts"
}
},
"files": [
"./esm/index.js",
"./esm/index.d.ts",
"./cjs/index.cjs",
"./cjs/index.d.cts"
],
"scripts": {
"start": "bun src/index.ts",
"build": "rslib build",
"build:prod": "cross-env NODE_ENV=production bun run build",
"build:dev": "cross-env NODE_ENV=development bun run build"
},
"devDependencies": {
"@microsoft/api-extractor": "7.49.1",
"@rslib/core": "0.3.1",
"@types/bun": "1.1.16",
"@types/lodash": "4.17.14",
"@types/strftime": "0.9.8",
"cross-env": "7.0.3",
"typescript": "5.7.3"
},
"dependencies": {
"cli-highlight": "2.1.11",
"lodash": "4.17.21",
"strftime": "0.10.3",
"supports-color": "10.0.0"
}
}