-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.81 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 2.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@donedeal0/codefather",
"version": "1.0.7",
"description": "Codefather protects your codebase by controlling who can change what. Set authorization levels, lock down files, and enforce your rules—offline via CLI or online with GitHub Actions.",
"license": "ISC",
"author": "DoneDeal0",
"files": [
"dist"
],
"type": "module",
"types": "dist/index.d.ts",
"bin": {
"codefather": "./dist/index.mjs",
"codefather-github": "./dist/scripts/github.mjs",
"codefather-init": "./dist/scripts/init.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DoneDeal0/codefather"
},
"bugs": {
"url": "https://github.com/DoneDeal0/codefather/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/DoneDeal0"
},
"publishConfig": {
"access": "public"
},
"readme": "./README.md",
"declaration": true,
"keywords": [
"codeowners",
"github",
"github-action",
"action",
"file-protection",
"protection",
"file protection",
"reviewers",
"pull-request",
"pull request",
"cli",
"git",
"pre-commit",
"access-control",
"access control",
"code-review",
"code review",
"repository-management",
"codeowner-approval",
"rules-based",
"reviewer-assignement",
"repository-rules",
"repository rules",
"repository",
"management",
"developer-tools",
"developer tool",
"open-source",
"workflow",
"automation",
"security",
"team",
"team-management",
"team management",
"mafia",
"codefather",
"godfather",
"authorization"
],
"scripts": {
"build": "tsup",
"codefather-github": "npm run build && node dist/scripts/github.js",
"codefather-init": "npm run build && node dist/scripts/init.js",
"codefather": "npm run build && node dist/index.js",
"format": "npx prettier . --write",
"lint:dead-code": "npx -p typescript@latest -p knip knip",
"lint": "eslint --cache --max-warnings=0 --fix",
"prepare": "husky",
"test": "jest",
"tsc": "tsc --noEmit --incremental"
},
"dependencies": {
"@actions/github": "^6.0.1",
"@octokit/rest": "^22.0.0",
"esbuild": "^0.25.8"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/types": "^19.8.1",
"@eslint/js": "^9.32.0",
"@semantic-release/github": "^11.0.3",
"@semantic-release/npm": "^12.0.2",
"@swc/core": "^1.13.3",
"@swc/jest": "^0.2.39",
"@types/jest": "^30.0.0",
"@types/node": "^24.1.0",
"eslint": "^9.32.0",
"husky": "^9.1.7",
"jest": "^30.0.5",
"prettier": "^3.6.2",
"swc-loader": "^0.2.6",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0"
}
}