-
-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "vercel-action",
"version": "42.3.0",
"private": true,
"packageManager": "pnpm@10.15.0",
"author": {
"name": "Minsu Lee",
"email": "amond@amond.net",
"url": "https://amond.dev"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/amondnet/vercel-action"
},
"keywords": [
"GitHub",
"Actions",
"Vercel",
"Zeit",
"Now"
],
"main": "dist/index.js",
"engines": {
"node": "24.x"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"start": "node ./dist/index.js",
"build": "ncc build src/index.ts -o dist --source-map --license licenses.txt",
"test": "vitest run",
"test:unit": "vitest run --project unit",
"test:integration": "vitest run --project integration",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"all": "pnpm lint && pnpm typecheck && pnpm build && pnpm test",
"prepare": "husky"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.0.3",
"@actions/github": "^6.0.0",
"@actions/http-client": "^2.2.3",
"@octokit/webhooks": "latest",
"@vercel/client": "17.2.65",
"axios": "^1.6.8",
"common-tags": "^1.8.0",
"semver": "^7.7.4",
"vercel": "^52.2.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.0.0",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@octokit/rest": "^22.0.1",
"@types/common-tags": "^1.8.4",
"@types/node": "^24.0.0",
"@types/semver": "^7.7.1",
"@vercel/ncc": "^0.36.0",
"@vitest/coverage-v8": "^3.0.0",
"emulate": "^0.2.0",
"eslint": "^9.9.0",
"husky": "^9.1.7",
"typescript": "^5.7.0",
"vitest": "^3.0.0",
"yaml": "^2.8.3"
}
}