-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.31 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.31 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
{
"name": "unentropy",
"homepage": "https://unentropy.dev",
"repository": {
"url": "git+https://github.com/unentropy/unentropy.git"
},
"version": "0.3.4",
"type": "module",
"description": "Serverless tool for tracking custom code metrics in CI/CD pipelines",
"license": "MIT",
"bin": {
"unentropy": "dist/index.js"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"metrics",
"ci-cd",
"code-quality",
"github-actions",
"npm",
"typescript",
"bun"
],
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build:cli": "bun run scripts/build-cli.ts",
"build:actions": "bun run scripts/build-actions.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "bun run lint && bun run typecheck && bun run format:check",
"dev:report": "bun --watch scripts/dev-report.ts",
"generate-fixtures": "bun run scripts/generate-fixtures.ts",
"visual-review": "bun run scripts/generate-fixtures.ts && bun run scripts/open-reports.ts",
"dev-report": "bun run scripts/dev-report.ts",
"version:patch": "bun pm version patch && git push --follow-tags",
"version:minor": "bun pm version minor && git push --follow-tags",
"version:major": "bun pm version major && git push --follow-tags"
},
"devDependencies": {
"@types/bun": "latest",
"@types/yargs": "^17.0.35",
"drizzle-kit": "^0.31.8",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.0.0"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.1",
"@markusberg/lcov-parse": "^2.0.4",
"@types/serialize-javascript": "^5.0.4",
"drizzle-orm": "^0.45.1",
"fast-glob": "^3.3.3",
"fast-xml-parser": "^5.3.2",
"preact": "^10.27.2",
"preact-render-to-string": "^6.6.3",
"serialize-javascript": "^7.0.0",
"yargs": "^18.0.0",
"zod": "^4.1.12"
}
}