-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1019 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1019 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
{
"name": "prime-console",
"version": "2.2.1",
"description": "Easy to use logger for your node.js application",
"scripts": {
"prepare": "husky install dev/.husky",
"build": "unbuild",
"dev": "pnpm build && node dist/index.mjs",
"release": "pnpm build && changelogen --release --push && npm publish"
},
"repository": "malezjaa/prime-console",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"logger",
"colors"
],
"author": "malezjaa",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-angular": "^17.7.0",
"@types/node": "^20.8.3",
"changelogen": "^0.5.5",
"defu": "^6.1.2",
"husky": "^8.0.3",
"is-unicode-supported": "^1.3.0",
"lint-staged": "^13.3.0",
"prettier": "^3.0.3",
"std-env": "^3.4.3",
"string-width": "^6.1.0",
"strip-ansi": "^7.1.0",
"unbuild": "^2.0.0"
}
}