-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.09 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.09 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
{
"name": "maiass",
"type": "module",
"version": "5.14.2",
"description": "AI commit messages, version bumps, and changelogs from one command. Stages, commits, merges, tags. Anonymous on first run — no email, no card.",
"main": "maiass.mjs",
"bin": {
"maiass": "./maiass.mjs",
"maiass-setup": "./setup-env.js"
},
"author": "Velvary Pty Ltd",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/vsmash/nodemaiass.git"
},
"homepage": "https://maiass.net",
"bugs": {
"url": "https://github.com/vsmash/nodemaiass/issues"
},
"files": [
"lib/",
"templates/",
"maiass.mjs",
"setup-env.js",
"README.md",
"CONTRIBUTING.md",
"CODE_OF_CONDUCT.md",
"LICENSE"
],
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"ai-commit",
"ai-commit-message",
"commit-message-generator",
"git-automation",
"git-workflow",
"changelog-generator",
"semantic-versioning",
"version-bump",
"conventional-commits",
"ai",
"git",
"commit",
"changelog",
"semver",
"cli",
"automation",
"openai",
"developer-tools",
"version-management",
"workflow"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/vsmash"
},
{
"type": "ko_fi",
"url": "https://ko-fi.com/myass"
}
],
"scripts": {
"start": "node maiass.mjs",
"build": "./scripts/build-bundled.sh",
"build:all": "./scripts/advanced-build.sh all",
"build:pkg": "./scripts/advanced-build.sh pkg",
"build:bun": "./scripts/advanced-build.sh bun",
"build:nexe": "./scripts/advanced-build.sh nexe",
"build:source": "./scripts/advanced-build.sh source",
"build:legacy": "node build.js",
"test": "node test/test-runner.js",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"chalk": "^5.4.1",
"dotenv": "^16.4.5",
"yargs": "^17.7.2"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.4",
"vitest": "^4.1.4"
}
}