-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.14 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.14 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
{
"name": "github-repository-tags",
"version": "1.0.0",
"description": "CLI tool to manage GitHub repository tags via Github API",
"main": "index.js",
"scripts": {
"build": "tsc && copyfiles -u 1 src/**/*.sql dist/",
"main": "node dist/index.js",
"show-help": "node dist/index.js -h",
"dev": "ts-node src/index.ts",
"dev:watch": "nodemon --watch src --ext ts --exec ts-node src/index.ts",
"type-check": "tsc --noEmit",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yogeb-tech/github-repository-tags.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Yogeb-tech/github-repository-tags/issues"
},
"homepage": "https://github.com/Yogeb-tech/github-repository-tags#readme",
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.1.0",
"copyfiles": "^2.4.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@octokit/rest": "^22.0.1",
"better-sqlite3": "^12.6.2",
"commander": "^14.0.2",
"dotenv": "^17.2.3",
"ts-node": "^10.9.2",
"vitest": "^4.0.18"
}
}