-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 956 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 956 Bytes
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
{
"name": "cobraconfig",
"version": "1.3.1",
"description": "A python tool that cannot fail to exist on your hard drive, what is it for? Everything to set up a good Python project, whether to train an AI or for a novice newbie. Use it",
"main": "index.js",
"scripts": {
"start": "node index.js",
"build": "pkg . --targets node16-win-x64 --output CobraConfig.exe",
"test": "node index.js --non-interactive"
},
"bin": "index.js",
"pkg": {
"assets": [
"node_modules/**/*"
],
"targets": [
"node16-win-x64"
]
},
"keywords": [
"python",
"configuration",
"tool"
],
"author": "FrogPossibility",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"figlet": "^1.8.0",
"inquirer": "^8.2.6",
"ora": "^5.4.1"
},
"devDependencies": {
"pkg": "^5.8.1"
}
}