-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"type": "module",
"name": "@evilkiwi/logger",
"version": "2.0.1",
"description": "Pretty-print utility logger for JS/TS",
"files": [
"build"
],
"main": "./build/index.mjs",
"types": "./build/index.d.ts",
"license": "GPL-3.0-only",
"author": {
"name": "Evil Kiwi Limited",
"url": "https://evil.kiwi",
"email": "support@evil.kiwi"
},
"homepage": "https://github.com/evilkiwi/logger",
"bugs": {
"url": "https://github.com/evilkiwi/logger/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evilkiwi/logger.git"
},
"keywords": [
"typescript",
"logger",
"log",
"console",
"color"
],
"sideEffects": false,
"scripts": {
"prepack": "pnpm run build",
"build": "cross-env NODE_ENV=production node build.mjs && tsc",
"dev": "cross-env NODE_ENV=development node build.mjs && tsc",
"lint": "eslint --ext .ts --ignore-path .gitignore src"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"cross-env": "^7.0.3",
"esbuild": "^0.19.9",
"eslint": "^8.55.0",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.9",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
}
}