-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.1 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
74
75
76
77
78
79
80
{
"name": "bunny-deploy",
"version": "0.0.0-semantically-released",
"description": "GitHub action for deploying your static app to Bunny CDN 🚀",
"homepage": "https://github.com/R-J-dev/bunny-deploy#readme",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/R-J-dev/bunny-deploy"
},
"bugs": {
"url": "https://github.com/R-J-dev/bunny-deploy/issues"
},
"private": true,
"packageManager": "[email protected]",
"scripts": {
"test": "vitest",
"test:ci": "vitest --no-watch",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:ci": "pnpm lint:check && pnpm format:check",
"build": "ncc build src/index.ts --license licenses.txt"
},
"keywords": [
"Bunny",
"Deploy",
"CDN",
"GitHub",
"Action"
],
"engines": {
"node": "~20"
},
"author": "R-J-dev",
"license": "MIT",
"exports": {
".": "./dist/index.js"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-angular": "19.6.0",
"@commitlint/format": "19.5.0",
"@commitlint/types": "19.5.0",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.17.0",
"@types/eslint__js": "8.42.3",
"@types/express": "4.17.21",
"@types/fs-extra": "11.0.4",
"@types/node": "20.16.5",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"@vercel/ncc": "0.38.3",
"commitlint": "19.6.1",
"conventional-changelog-angular": "8.0.0",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"express": "4.21.2",
"fast-check": "3.23.2",
"fs-extra": "11.2.0",
"get-port": "7.1.0",
"globals": "15.14.0",
"license-checker-rseidelsohn": "4.4.2",
"nock": "13.5.6",
"prettier": "3.4.2",
"semantic-release": "24.2.0",
"ts-node": "10.9.2",
"typescript": "5.7.2",
"typescript-eslint": "8.19.1",
"vitest": "2.1.8"
},
"dependencies": {
"@actions/core": "1.11.1",
"got": "14.4.5",
"modern-async": "2.0.4",
"p-retry": "6.2.1",
"zod": "3.24.1"
}
}