generated from dsanders11/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 4.19 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "project-actions",
"description": "A collection of actions for automating GitHub projects",
"version": "0.0.0",
"author": "David Sanders <dsanders11@ucsbalum.com>",
"private": true,
"homepage": "https://github.com/dsanders11/project-actions",
"repository": {
"type": "git",
"url": "git+https://github.com/dsanders11/project-actions.git"
},
"bugs": {
"url": "https://github.com/dsanders11/project-actions/issues"
},
"engines": {
"node": ">=20"
},
"scripts": {
"bundle": "npm run format:write && npm run package",
"ci-test": "vitest run --coverage --reporter=verbose",
"format:write": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"lint": "npx eslint . -c ./.github/linters/.eslintrc.yml",
"package:add-item": "esbuild add-item/index.ts --bundle --outfile=dist/add-item.js --platform=node --target=node20.2",
"package:archive-item": "esbuild archive-item/index.ts --bundle --outfile=dist/archive-item.js --platform=node --target=node20.2",
"package:close-project": "esbuild close-project/index.ts --bundle --outfile=dist/close-project.js --platform=node --target=node20.2",
"package:completed-by": "esbuild completed-by/index.ts --bundle --outfile=dist/completed-by.js --platform=node --target=node20.2",
"package:copy-project": "esbuild copy-project/index.ts --bundle --outfile=dist/copy-project.js --platform=node --target=node20.2",
"package:delete-item": "esbuild delete-item/index.ts --bundle --outfile=dist/delete-item.js --platform=node --target=node20.2",
"package:delete-project": "esbuild delete-project/index.ts --bundle --outfile=dist/delete-project.js --platform=node --target=node20.2",
"package:edit-item": "esbuild edit-item/index.ts --bundle --outfile=dist/edit-item.js --platform=node --target=node20.2",
"package:edit-project": "esbuild edit-project/index.ts --bundle --outfile=dist/edit-project.js --platform=node --target=node20.2",
"package:find-project": "esbuild find-project/index.ts --bundle --outfile=dist/find-project.js --platform=node --target=node20.2",
"package:find-workflow": "esbuild find-workflow/index.ts --bundle --outfile=dist/find-workflow.js --platform=node --target=node20.2",
"package:get-item": "esbuild get-item/index.ts --bundle --outfile=dist/get-item.js --platform=node --target=node20.2",
"package:get-project": "esbuild get-project/index.ts --bundle --outfile=dist/get-project.js --platform=node --target=node20.2",
"package:get-workflow": "esbuild get-workflow/index.ts --bundle --outfile=dist/get-workflow.js --platform=node --target=node20.2",
"package:link-project": "esbuild link-project/index.ts --bundle --outfile=dist/link-project.js --platform=node --target=node20.2",
"package:github-script": "ncc build github-script/index.ts --out dist/github-script",
"package": "npm-run-all \"package:!(watch)\"",
"package:watch": "npm run package -- --watch",
"test": "vitest run --coverage --reporter=verbose",
"all": "npm run format:write && npm run lint && npm run test && npm run package",
"prepare": "husky install"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@actions/glob": "^0.4.0",
"@actions/tool-cache": "^2.0.1",
"@octokit/core": "^5.0.0",
"@octokit/plugin-paginate-graphql": "^4.0.0",
"@octokit/plugin-request-log": "^4.0.0",
"@octokit/plugin-retry": "^6.0.0",
"mustache": "^4.2.0"
},
"devDependencies": {
"@octokit/types": "^12.0.0",
"@types/mustache": "^4.2.2",
"@types/node": "^20.7.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vercel/ncc": "^0.38.0",
"@vitest/coverage-v8": "^1.5.3",
"esbuild": "^0.19.2",
"eslint": "^8.50.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsonc": "^2.9.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vitest": "^0.5.4",
"husky": "^8.0.3",
"js-yaml": "^4.1.0",
"npm-run-all2": "^6.0.6",
"prettier": "^3.0.3",
"prettier-eslint": "^16.2.0",
"typescript": "^5.2.2",
"vitest": "^1.5.3"
}
}