-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathpackage.json
91 lines (91 loc) · 2.33 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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@nuxthub/core",
"private": false,
"version": "0.8.17",
"description": "Build full-stack Nuxt applications on Cloudflare, with zero configuration.",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-hub/core.git"
},
"license": "Apache-2.0",
"type": "module",
"main": "./dist/module.cjs",
"module": "./dist/module.mjs",
"types": "./dist/types.d.ts",
"homepage": "https://hub.nuxt.com",
"files": [
"dist"
],
"keywords": [
"nuxt",
"fullstack",
"cloudflare",
"database",
"kv",
"blob"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev:prepare": "nuxt-module-build build --stub; nuxt-module-build prepare; nuxi prepare playground",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"docs": "PORT=4000 nuxi dev docs",
"docs:build": "nuxi generate docs",
"release": "npm run lint && npm run test && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run --test-timeout=60000",
"test:watch": "vitest watch"
},
"dependencies": {
"@cloudflare/workers-types": "^4.20250204.0",
"@nuxt/devtools-kit": "^2.0.0",
"@nuxt/kit": "^3.15.4",
"@uploadthing/mime-types": "^0.3.4",
"citty": "^0.1.6",
"confbox": "^0.1.8",
"defu": "^6.1.4",
"destr": "^2.0.3",
"h3": "^1.15.0",
"mime": "^4.0.6",
"nitro-cloudflare-dev": "^0.2.1",
"ofetch": "^1.4.1",
"pathe": "^2.0.2",
"pkg-types": "^1.3.1",
"std-env": "^3.8.0",
"ufo": "^1.5.4",
"uncrypto": "^0.1.3",
"unstorage": "^1.14.4",
"zod": "^3.24.1"
},
"devDependencies": {
"@nuxt/devtools": "^2.0.0",
"@nuxt/eslint-config": "^1.0.1",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.15.4",
"@nuxt/test-utils": "^3.15.4",
"@nuxthub/core": "link:",
"@types/node": "^22.13.1",
"changelogen": "^0.5.7",
"eslint": "^9.19.0",
"nuxt": "^3.15.4",
"typescript": "5.6.3",
"vitest": "^3.0.5",
"wrangler": "^3.107.3"
},
"resolutions": {
"h3": "^1.14.0"
},
"packageManager": "pnpm@10.2.1",
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"@tsparticles/engine",
"esbuild",
"puppeteer",
"sharp",
"vue-demi",
"workerd"
]
}
}