-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.81 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.81 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "github-helpers",
"packageManager": "bun@1.3.6",
"main": "src/main.ts",
"type": "module",
"private": true,
"dependencies": {
"@actions/core": "2.0.2",
"@actions/github": "7.0.0",
"@adobe/node-fetch-retry": "2.2.0",
"@octokit/graphql-schema": "15.26.1",
"axios": "1.13.2",
"bluebird": "3.7.2",
"codeowners-utils": "1.0.2",
"js-yaml": "4.1.1",
"lodash": "4.17.21",
"micromatch": "4.0.8",
"simple-git": "3.30.0"
},
"devDependencies": {
"@octokit/webhooks-types": "7.6.1",
"@swc/jest": "0.2.39",
"@total-typescript/ts-reset": "0.6.1",
"@types/bluebird": "3.5.42",
"@types/bun": "1.3.6",
"@types/jest": "30.0.0",
"@types/js-yaml": "4.0.9",
"@types/lodash.camelcase": "4.3.9",
"@types/lodash.chunk": "4.2.9",
"@types/lodash.samplesize": "4.2.9",
"@types/lodash.union": "4.6.9",
"@types/lodash.uniq": "4.5.9",
"@types/micromatch": "4.0.10",
"@vercel/ncc": "0.38.4",
"eslint": "9.39.2",
"husky": "9.1.7",
"jest": "30.2.0",
"plop": "4.0.4",
"prettier": "3.8.0",
"typescript": "5.9.3",
"typescript-eslint": "8.53.1"
},
"jest": {
"clearMocks": true,
"transform": {
"^.+\\.(t|j)sx?$": [
"@swc/jest",
{
"jsc": {
"target": "esnext"
}
}
]
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$"
},
"scripts": {
"create-helper": "plop helper --force",
"format": "prettier --write .",
"format-check": "prettier --check .",
"generate": "bun scripts/generate-helper-inputs.ts",
"lint": "eslint --quiet --fix ./**/*.ts src/**/*.ts test/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"prepare": "husky",
"setup": "./scripts/dev-setup.sh",
"test": "bun jest"
}
}