forked from ipdxco/github-as-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.51 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.51 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
{
"name": "sync",
"version": "0.0.0",
"private": true,
"description": "Sync",
"main": "lib/main.js",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint **/*.ts",
"test": "jest --passWithNoTests",
"all": "npm run build && npm run format && npm run lint && npm test",
"schema": "npx ts-json-schema-generator --tsconfig tsconfig.json --path src/yaml/schema.ts --type ConfigSchema --out ../github/.schema.json",
"main": "node lib/main.js"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@octokit/auth-app": "^6.0.3",
"@octokit/graphql": "^7.0.2",
"@octokit/plugin-retry": "^6.0.1",
"@octokit/plugin-throttling": "^8.2.0",
"@octokit/rest": "^20.0.2",
"class-transformer": "^0.5.1",
"deep-diff": "^1.0.2",
"hcl2-parser": "^1.0.3",
"reflect-metadata": "^0.2.2",
"yaml": "^2.7.0"
},
"devDependencies": {
"@types/deep-diff": "^1.0.5",
"@types/jest": "^29.5.12",
"@types/node": "^22.10.10",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.56.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.2.3",
"jest": "^29.7.0",
"prettier": "3.4.2",
"ts-jest": "^29.2.5",
"ts-json-schema-generator": "^1.5.0",
"typescript": "^5.3.3"
}
}