-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.03 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.03 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
{
"name": "magicc",
"version": "0.2.6",
"author": "Waren Gonzaga",
"description": "You can do `magicc`, you can build anything that you desire.",
"keywords": [
"magic",
"magicc",
"openai",
"git",
"commit",
"message",
"tool",
"ai",
"cli"
],
"license": "GPL-3.0",
"bin": "dist/cli.js",
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "babel --out-dir=dist source",
"dev": "babel --out-dir=dist --watch source",
"clean": "npm run clean:linux",
"clean:linux": "rm -rf dist",
"clean:windows": "rmdir /s /q dist",
"setup": "npm run setup:linux",
"setup:linux": "npm run clean:linux && npm run build && npm i -g .",
"setup:windows": "npm run clean:windows && npm run build",
"reset": "npm run reset:linux",
"reset:linux": "npm uninstall -g magicc && npm run setup:linux",
"test": "prettier --check . && xo && ava",
"audit:fix": "npx yarn-audit-fix"
},
"files": [
"dist"
],
"dependencies": {
"conf": "^12.0.0",
"dotenv": "^16.5.0",
"execa": "^8.0.1",
"ink": "^5.2.1",
"ink-big-text": "^2.0.0",
"ink-gradient": "^3.0.0",
"ink-select-input": "^6.2.0",
"is-git-repository": "^2.0.0",
"meow": "^11.0.0",
"openai": "^4.104.0",
"react": "^18.2.0",
"readline": "^1.3.0"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/preset-react": "^7.18.6",
"@vdemedes/prettier-config": "^2.0.1",
"ava": "^5.2.0",
"babel-plugin-inline-json-import": "^0.3.2",
"chalk": "^5.2.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"import-jsx": "^5.0.0",
"ink-testing-library": "^3.0.0",
"prettier": "^2.8.7",
"xo": "^0.53.1"
},
"ava": {
"environmentVariables": {
"NODE_NO_WARNINGS": "1"
},
"nodeArguments": [
"--loader=import-jsx"
]
},
"xo": {
"extends": "xo-react",
"prettier": true,
"rules": {
"react/prop-types": "off"
}
},
"prettier": "@vdemedes/prettier-config",
"babel": {
"presets": [
"@babel/preset-react"
],
"plugins": [
"inline-json-import"
]
}
}