-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.26 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.26 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
41
42
43
44
{
"name": "project-fields",
"version": "2.1.0",
"description": "A GitHub Action to interact with project fields",
"main": "build/index.js",
"private": "true",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "ncc build src/index.ts --minify --out build",
"lint": "gts lint",
"clean": "gts clean",
"fix": "gts fix",
"generate": "ts-node scripts/graphQL-types.ts && npm run fix -- src/api/generated.ts",
"prepare": "husky",
"posttest": "npm run lint",
"prebuild": "npm run clean && npm run generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EndBug/project-fields.git"
},
"author": "Federico Grandi <fgrandi30@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/EndBug/project-fields/issues"
},
"homepage": "https://github.com/EndBug/project-fields#readme",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@types/node": "^20.14.9",
"@vercel/ncc": "^0.38.2",
"all-contributors-cli": "^6.26.1",
"csv": "^6.3.10",
"eslint-plugin-prettier": "^5.2.1",
"gts": "^7.0.0",
"husky": "^9.1.6",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}