forked from nuxt-hub/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.92 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
{
"name": "@nuxthub/core",
"private": false,
"version": "0.5.9",
"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; 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 .",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@cloudflare/workers-types": "^4.20240405.0",
"@nuxt/devtools-kit": "^1.1.5",
"@nuxt/kit": "^3.11.2",
"@sindresorhus/slugify": "^2.2.1",
"@uploadthing/mime-types": "^0.2.7",
"citty": "^0.1.6",
"defu": "^6.1.4",
"h3": "^1.11.1",
"mime": "^4.0.1",
"nitro-cloudflare-dev": "^0.1.4",
"ofetch": "^1.3.4",
"pathe": "^1.1.2",
"pkg-types": "^1.0.3",
"ufo": "^1.5.3",
"uncrypto": "^0.1.3",
"unstorage": "^1.10.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@nuxt/devtools": "^1.1.5",
"@nuxt/eslint-config": "^0.3.7",
"@nuxt/module-builder": "^0.5.5",
"@nuxt/schema": "^3.11.2",
"@nuxt/test-utils": "^3.12.1",
"@types/node": "^20.12.7",
"changelogen": "^0.5.5",
"eslint": "^9.0.0",
"nuxt": "^3.11.2",
"typescript": "^5.4.5",
"vitest": "^1.5.0",
"wrangler": "^3.51.0"
}
}