-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.46 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.46 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
89
90
{
"name": "charlie-git",
"version": "0.1.9",
"description": "A tool for analyzing and visualizing your git history. Based on ideas from 'Your Code as a Crime Scene' by Andrew M. Sutton.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/sudo97/charlie.git"
},
"homepage": "https://github.com/sudo97/charlie#readme",
"bugs": {
"url": "https://github.com/sudo97/charlie/issues"
},
"main": "./dist/cli/cli/index.js",
"bin": {
"charlie": "dist/cli/cli/index.js"
},
"files": [
"dist/",
"templates/"
],
"scripts": {
"execute": "node dist/cli/cli/index.js",
"build": "npm run build:frontend && npm run build:cli && npm run copy:templates",
"build:frontend": "vite build",
"build:cli": "tsc --project tsconfig.cli.json",
"copy:templates": "cp -r src/frontend/templates ./",
"dev": "concurrently \"npm run dev:frontend\" \"npm run build:cli -- --watch\"",
"dev:frontend": "vite serve",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:watch": "vitest --watch",
"lint": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check:duplicates": "jscpd src --mode strict",
"clean": "rm -rf dist templates",
"prepublishOnly": "npm run clean && npm run build"
},
"jscpd": {
"ignore": [
"**/*.test.ts"
]
},
"keywords": [
"git",
"analysis",
"visualization",
"code-quality",
"metrics",
"cli"
],
"author": "Illia Mikhnevych <https://github.com/sudo97>",
"license": "MIT",
"dependencies": {
"@react-spring/web": "^10.0.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"commander": "^11.1.0",
"d3": "^7.8.5",
"d3-cloud": "^1.2.7",
"isomorphic-git": "^1.30.2",
"mustache": "^4.2.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"zod": "^3.25.51"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@stryker-mutator/vitest-runner": "^9.0.1",
"@types/d3": "^7.4.3",
"@types/d3-cloud": "^1.2.9",
"@types/mustache": "^4.2.2",
"@types/node": "^20.10.6",
"@vitejs/plugin-react": "^4.5.2",
"concurrently": "^7.6.0",
"eslint": "^9.28.0",
"globals": "^16.2.0",
"jscpd": "^4.0.5",
"prettier": "^3.0.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.33.0",
"vite": "^4.4.9",
"vitest": "^3.2.3"
},
"engines": {
"node": ">=18.0.0"
}
}