-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
69 lines (69 loc) · 2.07 KB
/
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
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
{
"name": "git-split-diffs",
"version": "2.2.0",
"description": "Split diffs, now in your terminal",
"homepage": "https://github.com/banga/git-split-diffs",
"repository": {
"type": "git",
"url": "git+https://github.com/banga/git-split-diffs.git"
},
"type": "module",
"bin": {
"git-split-diffs": "build/index.mjs"
},
"files": [
"build/*",
"themes/*.json"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"keywords": [
"git",
"terminal",
"shell",
"diff",
"diffs"
],
"dependencies": {
"ansi-regex": "^6.0.1",
"chalk": "^5.3.0",
"diff": "^5.1.0",
"shiki": "^1.10.1",
"terminal-size": "^4.0.0",
"wcwidth": "^1.0.1"
},
"scripts": {
"clean": "rimraf './build'",
"lint": "cross-env ./node_modules/.bin/eslint src scripts",
"build": "npm run clean && node ./scripts/build.mjs",
"build:dev": "npm run build -- --watch",
"build:publish": "npm run build -- --prod",
"test": "cross-env ./node_modules/.bin/tsc && cross-env NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" ./node_modules/.bin/jest",
"previewTheme": "nodemon -q build/previewTheme.mjs",
"benchmark": "npm run build && node build/benchmark.mjs",
"prepublishOnly": "npm run lint && npm run build:publish && npm run test"
},
"devDependencies": {
"@eslint/js": "^8.56.0",
"@types/benchmark": "^2.1.0",
"@types/diff": "^5.0.0",
"@types/jest": "^29.5.1",
"@types/node": "18.16.2",
"@types/wcwidth": "^1.0.0",
"benchmark": "^2.1.4",
"cross-env": "^7.0.3",
"esbuild": "^0.17.18",
"eslint": "^8.56.0",
"globals": "^15.8.0",
"jest": "^29.7.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4",
"typescript-eslint": "^7.15.0"
},
"packageManager": "npm@9.8.1"
}