-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
73 lines (73 loc) · 1.71 KB
/
package.json
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
{
"name": "vercel-preview-url",
"version": "1.0.0",
"private": true,
"description": "GitHub Action to receive the deployment preview URL from Vercel",
"keywords": [
"vercel",
"deployment",
"vercel-shorturl",
"vercel-deployment",
"github",
"action"
],
"type": "module",
"homepage": "https://github.com/zentered/vercel-preview-url#readme",
"bugs": {
"url": "https://github.com/zentered/vercel-preview-url/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zentered/vercel-preview-url.git"
},
"license": "MIT",
"author": "Zentered <[email protected]> (https://zentered.co)",
"contributors": [
"Patrick Heneise (https://github.com/zentered)"
],
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.js -o dist --source-map --license licenses.txt",
"lint": "eslint . --ext .js --ext .md",
"prepare": "husky install",
"test": "VERCEL_TOKEN=123xyz vitest run"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,json,md}": [
"prettier --write"
],
"*.{mjs,js}": [
"eslint --cache --fix"
]
},
"release": {
"branches": [
"main"
]
},
"dependencies": {
"@actions/core": "^1.10.1",
"is-ci": "^3.0.1",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.2.2",
"@vercel/ncc": "^0.38.1",
"commitlint": "^19.3.0",
"dotenv": "^16.4.5",
"eslint": "^9.2.0",
"eslint-plugin-markdown": "^5.0.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=18.0.0"
}
}