-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.79 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.79 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
{
"name": "github-tools",
"version": "1.0.0",
"author": "Lucas Santos <lucassm02@gmail.com>",
"repository": "https://github.com/lucassm02/github-tools.git",
"main": "src/index.ts",
"description": "A package of utilities to automate GitHub configuration processes",
"license": "MIT",
"scripts": {
"lint": "yarn eslint src/** --fix",
"lint:staged": "yarn lint-staged",
"types": "tsc --noEmit",
"start": "bun ./src/index.ts",
"start:debug": "bun --inspect-brk src/main",
"test": "dotenv -e .env.test -- jest --detectOpenHandles --passWithNoTests --silent --noStackTrace --runInBand",
"test:ci": "yarn test --forceExit",
"test:verbose": "dotenv -e .env.test -- jest --detectOpenHandles --passWithNoTests --verbose",
"test:unit": "yarn test --watch -c jest-unit.config.ts",
"test:unit:verbose": "yarn test:verbose --watch -c jest-unit.config.ts",
"test:coverage": "yarn test --coverage",
"prepare": "husky"
},
"dependencies": {
"@inquirer/prompts": "^5.3.8",
"@octokit/rest": "^21.0.2",
"libsodium-wrappers": "^0.7.15",
"ora": "^8.1.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/bun": "latest",
"@types/libsodium-wrappers": "^0.7.14",
"@types/node": "^22.5.1",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-prettier": "^5.2.1",
"git-commit-msg-linter": "^5.0.8",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
}
}