-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.3 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": "@runcased/hypersonic",
"version": "0.3.5",
"description": "Streamlined GitHub PR automation for modern TypeScript applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint 'src/**/*.{js,ts}'",
"clean": "rimraf dist",
"format": "prettier --write \"src/**/*.{js,ts}\"",
"format:check": "prettier --check \"src/**/*.{js,ts}\"",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@octokit/rest": "^20.0.0",
"simple-git": "^3.22.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"glob": "^10.3.10",
"jest": "^29.7.0",
"lru-cache": "^10.2.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "5.5.3"
},
"peerDependencies": {
"@octokit/rest": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"github",
"pull-request",
"automation",
"typescript"
],
"author": "Cased",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cased/hypersonic.git"
}
}