-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.34 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
{
"name": "laravel-deploy-preview",
"description": "Deploy PR preview sites for Laravel apps.",
"version": "2.7.2",
"author": "Jacob Baker-Kretzmar <jacobtbk@gmail.com>",
"license": "MIT",
"private": true,
"homepage": "https://github.com/bakerkretzmar/laravel-deploy-preview",
"repository": {
"type": "git",
"url": "git+https://github.com/bakerkretzmar/laravel-deploy-preview.git"
},
"bugs": {
"url": "https://github.com/bakerkretzmar/laravel-deploy-preview/issues"
},
"keywords": [
"actions",
"laravel",
"ci",
"deploy"
],
"type": "module",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"build": "ncc build src/index.ts --source-map --license licenses.txt",
"debug": "ncc run src/debug.ts",
"test": "vitest unit",
"test:integration": "vitest run integration --test-timeout=60000"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@octokit/webhooks-types": "^7.5.1",
"@types/node": "^20.12.12",
"@vercel/ncc": "^0.38.1",
"axios": "^1.6.8",
"dotenv": "^16.4.5",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=20"
},
"prettier": {
"printWidth": 120,
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2
}
}