-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.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
{
"name": "@nuxthub/action",
"description": "Deploy your Nuxt application to NuxtHub",
"author": "NuxtHub",
"version": "1.1.4",
"license": "Apache-2.0",
"homepage": "https://github.com/nuxt-hub/action",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-hub/action.git"
},
"bugs": {
"url": "https://github.com/nuxt-hub/action/issues"
},
"keywords": [
"actions",
"nuxthub"
],
"type": "module",
"exports": {
".": "./dist/index.mjs"
},
"files": [
"dist"
],
"scripts": {
"bundle": "pnpm run lint:fix && pnpm run package",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"local-action": "local-action . src/main.ts .env",
"package": "unbuild"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@github/local-action": "^2.5.1",
"@nuxt/eslint-config": "^0.7.5",
"@types/node": "^22.10.7",
"eslint": "^9.18.0",
"nuxthub": "^0.8.4",
"ofetch": "^1.4.1",
"picocolors": "^1.1.1",
"pretty-bytes": "^6.1.1",
"ufo": "^1.5.4",
"unbuild": "3.3.1"
},
"engines": {
"node": ">=20"
}
}