-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.68 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
{
"name": "nitro-cloudflare-dev",
"version": "0.2.1",
"description": "POC module to enable access to the Cloudflare runtime bindings in development server of Nitro and Nuxt",
"repository": "pi0/nitro-cloudflare-dev",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"./dist/runtime/*": {
"types": "./dist/runtime/*.d.ts",
"default": "./dist/runtime/*.mjs"
}
},
"main": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev:nitro": "pnpm run -C examples/nitro dev",
"dev:nuxt": "pnpm run -C examples/nuxt dev",
"lint": "eslint --cache . && prettier -c src",
"lint:fix": "eslint --cache . --fix && prettier -c src -w",
"prepack": "pnpm run build",
"release": "pnpm test && pnpm build && changelogen --release && npm publish && git push --follow-tags",
"test": "pnpm lint && pnpm test:types",
"test:types": "tsc --noEmit --skipLibCheck"
},
"resolutions": {
"nitro-cloudflare-dev": "workspace:*"
},
"dependencies": {
"consola": "^3.2.3",
"mlly": "^1.7.2",
"pkg-types": "^1.2.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241018.0",
"@types/node": "^22.7.8",
"changelogen": "^0.5.7",
"eslint": "^9.13.0",
"eslint-config-unjs": "^0.4.1",
"h3": "^1.13.0",
"jiti": "^2.3.3",
"miniflare": "^3.20241011.0",
"nitropack": "^2.9.7",
"nuxt": "^3.13.2",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"unbuild": "^2.0.0",
"wrangler": "^3.81.0"
},
"packageManager": "[email protected]"
}