forked from timrogers/gh-migrate-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.7 KB
/
package.json
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
{
"name": "gh-migrate-project",
"version": "2.0.0",
"type": "module",
"description": "A GitHub CLI (https://cli.github.com/) extension for migrating GitHub Projects (https://docs.github.com/en/issues/planning-and-tracking-with-projects) between GitHub accounts and products",
"homepage": "https://github.com/timrogers/gh-migrate-project",
"scripts": {
"package": "node build.js && npx pkg dist/migrate-project.cjs --out-path bin --targets node20-linux-x64,node20-macos-x64,node20-win-x64",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"dev": "npx ts-node --esm src/index.ts",
"clean-up-organization-projects": "npx ts-node --esm script/clean-up-organization-projects.ts",
"seed-github-enterprise-server-instance": "npx ts-node --esm script/seed-github-enterprise-server-instance.ts"
},
"author": "Tim Rogers <me@timrogers.co.uk>",
"license": "MIT",
"dependencies": {
"@fast-csv/parse": "^5.0.0",
"@octokit/graphql": "^8.1.1",
"@octokit/plugin-paginate-graphql": "^5.2.2",
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"octokit": "^4.0.2",
"posthog-node": "^4.0.1",
"semver": "^7.6.2",
"undici": "^6.19.2",
"winston": "^3.13.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@yao-pkg/pkg": "^5.12.0",
"esbuild": "^0.23.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"repository": {
"type": "git",
"url": "https://github.com/timrogers/gh-migrate-project.git"
}
}