-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.14 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.14 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
{
"name": "opencode-nodesecure",
"version": "1.0.0",
"description": "A plugin for OpenCode that leverage NodeSecure packages.",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc -b",
"prepublishOnly": "npm run build",
"test-types": "npm run build && tsd && attw --pack . --profile esm-only"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/NodeSecure/scanner",
"directory": "workspaces/opencode-nodesecure"
},
"files": [
"dist"
],
"keywords": [
"NodeSecure",
"opencode"
],
"author": "GOMBAULD Clément <clementgombauld@hotmail.fr>",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/NodeSecure/scanner/issues"
},
"homepage": "https://github.com/NodeSecure/scanner/tree/master/workspaces/opencode-nodesecure#readme",
"dependencies": {
"@nodesecure/scanner": "^10.4.0",
"@opencode-ai/plugin": "^1.2.10"
},
"lavamoat": {
"allowScripts": {
"@opencode-ai/plugin": true
}
}
}