-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.12 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
{
"name": "avercel",
"version": "0.3.5",
"description": "Agent-Vercel: opinionated Vercel CLI wrapper — patches env quirks, adds env auditing, blocked environments, and command guardrails",
"main": "dist/index.js",
"bin": {
"avercel": "dist/index.js",
"vercel": "dist/index.js"
},
"scripts": {
"build": "tsc",
"test": "node --test dist/**/*.test.js",
"pretest": "npm run build",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"vercel",
"cli",
"env",
"wrapper",
"devtools"
],
"author": "exisz",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/exisz/avercel.git"
},
"bugs": {
"url": "https://github.com/exisz/avercel/issues"
},
"homepage": "https://exisz.github.io/avercel/",
"engines": {
"node": ">=18"
},
"dependencies": {
"js-yaml": "^4.1.0",
"vercel": "*"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.0",
"typescript": "^5.3.0"
},
"files": [
"dist",
"skill",
"README.md",
"LICENSE"
]
}