-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
77 lines (77 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
{
"name": "@nuxthub/core",
"private": false,
"version": "0.8.6",
"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.20241022.0",
"@nuxt/devtools-kit": "^1.6.0",
"@nuxt/kit": "^3.14.0",
"@uploadthing/mime-types": "^0.3.1",
"citty": "^0.1.6",
"confbox": "^0.1.8",
"defu": "^6.1.4",
"destr": "^2.0.3",
"h3": "^1.13.0",
"mime": "^4.0.4",
"nitro-cloudflare-dev": "^0.2.1",
"ofetch": "^1.4.1",
"pathe": "^1.1.2",
"pkg-types": "^1.2.1",
"std-env": "^3.7.0",
"ufo": "^1.5.4",
"uncrypto": "^0.1.3",
"unstorage": "^1.13.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@nuxt/devtools": "^1.6.0",
"@nuxt/eslint-config": "^0.6.1",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.14.0",
"@nuxt/test-utils": "^3.14.4",
"@nuxthub/core": "link:",
"@types/node": "^22.9.0",
"changelogen": "^0.5.7",
"eslint": "^9.14.0",
"nuxt": "^3.14.0",
"typescript": "^5.6.3",
"vitest": "^2.1.4",
"wrangler": "^3.84.1"
},
"packageManager": "pnpm@9.12.3"
}