forked from denisvieiradev/gitwise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.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
{
"name": "gitwise-workspace",
"version": "0.1.0",
"description": "gitwise monorepo root (private). The publishable packages live under packages/*.",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run --workspaces --if-present build",
"test": "node --experimental-vm-modules node_modules/.bin/jest --passWithNoTests",
"test:coverage": "node --experimental-vm-modules node_modules/.bin/jest --coverage --passWithNoTests",
"lint": "npm run --workspaces --if-present lint",
"typecheck": "npm run --workspaces --if-present typecheck"
},
"keywords": [
"cli",
"gitwise",
"git",
"ai",
"claude",
"code-review",
"commit",
"pull-request",
"release"
],
"author": "Denis Vieira <denisvieira05@gmail.com> (https://github.com/denisvieiradev)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/denisvieiradev/gitwise.git"
},
"bugs": {
"url": "https://github.com/denisvieiradev/gitwise/issues"
},
"homepage": "https://github.com/denisvieiradev/gitwise#readme",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.9.1",
"eslint": "^10.6.0",
"globals": "^17.7.0",
"jest": "^30.4.2",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.62.0"
}
}