-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
36 lines (36 loc) · 875 Bytes
/
Copy pathplugin.json
File metadata and controls
36 lines (36 loc) · 875 Bytes
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
{
"id": "my-safe-plugin",
"name": "My Safe Plugin",
"version": "1.0.0",
"description": "A brief, clear description of what this plugin does.",
"author": {
"name": "Your Name",
"email": "you@example.com",
"url": "https://github.com/yourname"
},
"license": "Apache-2.0",
"keywords": ["codex", "security", "tool"],
"categories": ["security", "dev-tools"],
"repository": {
"type": "git",
"url": "https://github.com/yourname/my-safe-plugin"
},
"bugs": {
"url": "https://github.com/yourname/my-safe-plugin/issues"
},
"homepage": "https://github.com/yourname/my-safe-plugin#readme",
"engines": {
"codex": ">=1.0.0"
},
"main": "src/index.js",
"scripts": {
"build": "npm run build",
"test": "npm test"
},
"dependencies": {
"some-lib": "^1.2.3"
},
"devDependencies": {
"hol-guard": "^1.0.0"
}
}