-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
54 lines (54 loc) · 1.91 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
47
48
49
50
51
52
53
54
{
"name": "gh-migrate-project",
"version": "4.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 .",
"lint-and-fix": "eslint . --fix",
"dev": "npx tsx src/index.ts",
"clean-up-organization-projects": "npx tsx script/clean-up-organization-projects.ts",
"configure-github-enterprise-server-instance": "npx tsx script/configure-github-enterprise-server-instance.ts"
},
"author": "Tim Rogers <[email protected]>",
"license": "MIT",
"dependencies": {
"@fast-csv/parse": "^5.0.2",
"@octokit/graphql": "^8.1.1",
"@octokit/plugin-paginate-graphql": "^5.2.4",
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"octokit": "^4.0.2",
"posthog-node": "^4.3.1",
"semver": "^7.6.3",
"undici": "^7.2.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@types/libsodium-wrappers": "^0.7.14",
"@types/node": "^22.10.1",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@yao-pkg/pkg": "^6.1.1",
"esbuild": "^0.24.2",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.13.0",
"libsodium-wrappers": "^0.7.15",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
},
"repository": {
"type": "git",
"url": "https://github.com/timrogers/gh-migrate-project.git"
}
}