-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 945 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 945 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "github-project-cli",
"version": "1.0.0",
"description": "CLI para criação de repositórios privados no GitHub com proteção de branch",
"author": "GSB - Typescript Especialist",
"license": "ISC",
"main": "dist/cli.js",
"type": "module",
"scripts": {
"dev": "ts-node src/cli.ts",
"build": "tsc",
"start": "tsc && node dist/cli.js",
"release": "node release.mjs"
},
"engines": {
"node": ">=18"
},
"bin": {
"create-github-project": "dist/cli.js"
},
"pkg": {
"compile": false,
"targets": [
"node18-win-x64"
],
"scripts": [
"dist/**/*.js"
],
"assets": [
"node_modules/@octokit/**/*"
]
},
"keywords": [
"cli",
"github",
"typescript",
"repository",
"automation"
],
"dependencies": {
"@clack/prompts": "^0.11.0",
"@octokit/rest": "^22.0.0",
"dotenv": "^17.1.0"
},
"devDependencies": {
"@types/node": "^24.0.11",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}