-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.58 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.58 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@calphonse/logger",
"version": "1.2.0",
"description": "Colored logging utility with chalk for Node.js applications",
"author": "Christopher Alphonse",
"homepage": "https://github.com/ChristopherAlphonse/logger",
"repository": "github:ChristopherAlphonse/logger",
"license": "MIT",
"keywords": [
"logger",
"logging",
"chalk",
"colors",
"console",
"utility"
],
"main": "dist/index.cjs",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"dev": "tsc && vite build --watch",
"build": "tsc && vite build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "biome lint .",
"lint:fix": "biome lint . --write",
"format": "biome format . --write",
"check": "biome check .",
"check:fix": "biome check . --write",
"biome:fix-and-check": "biome check . --fix && biome check .",
"type-check": "tsc --noEmit",
"clean": "rimraf dist coverage",
"prepare": "pnpm build",
"quality": "pnpm lint && pnpm format && pnpm type-check && pnpm test",
"quality:fix": "pnpm lint:fix && pnpm format && pnpm type-check && pnpm test",
"quality:biome": "pnpm biome:fix-and-check && pnpm type-check && pnpm test",
"prepublishOnly": "pnpm quality && pnpm build",
"validate": "pnpm quality && pnpm build",
"ci": "pnpm quality",
"audit": "pnpm audit",
"audit:fix": "pnpm audit --fix",
"example:basic": "tsx examples/basic-usage.ts",
"example:error": "tsx examples/error-handling-demo.ts"
},
"dependencies": {
"chalk": "^5.3.0",
"crypto-js": "^4.2.0",
"ollama": "0.5.17",
"openai": "6.18.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^10.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^9.0.0",
"@semantic-release/npm": "^13.1.2",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/crypto-js": "^4.2.2",
"@types/jest": "^29.5.12",
"@types/node": "^25.5.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"semantic-release": "^21.0.0",
"ts-jest": "^29.1.2",
"tslib": "^2.8.0",
"tsx": "^4.19.2",
"typescript": "^6.0.2",
"vite": "^7.0.5",
"vite-plugin-dts": "^4.5.4"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@8.15.0",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs"
}
}
}