-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.35 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.35 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "magicr",
"version": "0.1.1-beta",
"description": "AI-powered changelog generator from your commit history, built for dev workflows.",
"keywords": [
"changelog",
"release",
"git",
"ai",
"cli",
"automation",
"semantic-versioning"
],
"author": "Waren Gonzaga <opensource@warengonzaga.com> (https://warengonzaga.com)",
"license": "GPL-3.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/warengonzaga/magic-release.git"
},
"bugs": {
"url": "https://github.com/warengonzaga/magic-release/issues"
},
"homepage": "https://github.com/warengonzaga/magic-release#readme",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@10.27.0",
"bin": "./dist/cli/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rimraf dist",
"type-check": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx --fix",
"lint:check": "eslint src --ext .ts,.tsx",
"lint:security": "eslint src/**/*.ts --config eslint.security.config.js",
"secure:code": "snyk code test --public",
"secure:scan": "snyk test",
"secure": "pnpm secure:scan && pnpm secure:code && pnpm lint:security",
"security": "pnpm secure",
"format": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,json,md}\"",
"precommit": "pnpm lint:check && pnpm format:check && pnpm type-check",
"prepublishOnly": "pnpm clean && pnpm build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"validate": "pnpm lint && pnpm test && pnpm build",
"validate:full": "pnpm install && pnpm lint && pnpm test:coverage && pnpm build && pnpm secure",
"magicr": "node dist/cli/index.js"
},
"dependencies": {
"@wgtechlabs/log-engine": "^2.2.0",
"chalk": "^5.6.0",
"conf": "^13.0.1",
"date-fns": "^4.1.0",
"execa": "^9.6.1",
"ink": "^5.0.1",
"ink-big-text": "^2.0.0",
"ink-gradient": "^3.0.0",
"ink-select-input": "^6.0.0",
"ink-spinner": "^5.0.0",
"is-git-repository": "^2.0.0",
"meow": "^13.2.0",
"openai": "^4.67.3",
"react": "^18.3.1",
"semver": "^7.7.3",
"simple-git": "^3.30.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/eslint-plugin-security": "^3.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^22.7.9",
"@types/prop-types": "^15.7.15",
"@types/react": "^18.3.12",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-security-node": "^1.1.4",
"jest": "^30.0.3",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"snyk": "^1.1297.3",
"ts-jest": "^29.4.0",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
}
}