-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 881 Bytes
/
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
{
"name": "logthing",
"description": "Simple logging with log channels configurable on the fly. Organize your console.log calls without losing your sanity.",
"license": "MIT",
"version": "1.1.4",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/pyronaur/logthing.git"
},
"scripts": {
"build": "tsup src/index.ts --format esm --dts",
"dev": "tsup src/index.ts --format esm --dts --watch --ignore-watch dist",
"lint": "tsc",
"publish": "changeset && changeset version",
"gh-action-release": "npm run build && changeset version && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/node": "^20.2.5",
"tsup": "^6.6.2",
"typescript": "^4.9.5"
},
"dependencies": {
"console-log-colors": "^0.4.0",
"node-inspect-extracted": "^2.0.2"
}
}