forked from nitrojs/nitro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
141 lines (141 loc) · 4 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "nitropack",
"version": "1.0.0",
"description": "Build and Deploy Universal JavaScript Servers",
"repository": "unjs/nitro",
"license": "MIT",
"type": "module",
"exports": {
".": "./dist/index.mjs",
"./cli": "./dist/cli.mjs",
"./runtime/*": "./dist/runtime/*.mjs",
"./dist/runtime/*": "./dist/runtime/*.mjs",
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"nitro": "./dist/cli.mjs",
"nitropack": "./dist/cli.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "pnpm nitro dev playground",
"dev:build": "pnpm nitro build playground",
"dev:start": "node playground/.output/server/index.mjs",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:serve": "vitepress serve docs",
"lint": "eslint --ext .ts,.mjs,.cjs .",
"nitro": "jiti ./src/cli.ts",
"prepack": "pnpm build",
"release": "pnpm test && pnpm build && changelogen --release && pnpm publish && git push --follow-tags",
"stub": "unbuild --stub",
"test": "pnpm lint && vitest run --silent",
"test:types": "tsc --noEmit && pnpm test:fixture:types",
"test:fixture:types": "pnpm stub && jiti ./test/scripts/gen-fixture-types.ts && cd test/fixture && tsc --noEmit"
},
"resolutions": {
"nitropack": "link:."
},
"dependencies": {
"@cloudflare/kv-asset-handler": "^0.2.0",
"@netlify/functions": "^1.3.0",
"@rollup/plugin-alias": "^4.0.2",
"@rollup/plugin-commonjs": "^23.0.3",
"@rollup/plugin-inject": "^5.0.2",
"@rollup/plugin-json": "^5.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.1",
"@rollup/plugin-wasm": "^6.0.1",
"@rollup/pluginutils": "^5.0.2",
"@vercel/nft": "^0.22.1",
"archiver": "^5.3.1",
"c12": "^1.0.1",
"chalk": "^5.1.2",
"chokidar": "^3.5.3",
"consola": "^2.15.3",
"cookie-es": "^0.5.0",
"defu": "^6.1.1",
"destr": "^1.2.1",
"dot-prop": "^7.2.0",
"esbuild": "^0.15.16",
"escape-string-regexp": "^5.0.0",
"etag": "^1.8.1",
"fs-extra": "^10.1.0",
"globby": "^13.1.2",
"gzip-size": "^7.0.0",
"h3": "^1.0.1",
"hookable": "^5.4.2",
"http-proxy": "^1.18.1",
"is-primitive": "^3.0.1",
"jiti": "^1.16.0",
"klona": "^2.0.5",
"knitwork": "^1.0.0",
"listhen": "^1.0.1",
"mime": "^3.0.0",
"mlly": "^1.0.0",
"mri": "^1.2.0",
"node-fetch-native": "^1.0.1",
"ohash": "^1.0.0",
"ofetch": "^1.0.0",
"pathe": "^1.0.0",
"perfect-debounce": "^0.1.3",
"pkg-types": "^1.0.1",
"pretty-bytes": "^6.0.0",
"radix3": "^1.0.0",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.8.3",
"scule": "^1.0.0",
"semver": "^7.3.8",
"serve-placeholder": "^2.0.1",
"serve-static": "^1.15.0",
"source-map-support": "^0.5.21",
"std-env": "^3.3.1",
"ufo": "^1.0.1",
"unenv": "^1.0.0",
"unimport": "^1.0.1",
"unstorage": "^1.0.1"
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "^11.0.0",
"@types/aws-lambda": "^8.10.109",
"@types/etag": "^1.8.1",
"@types/fs-extra": "^9.0.13",
"@types/http-proxy": "^1.17.9",
"@types/node-fetch": "^2.6.2",
"@types/object-hash": "^2.2.1",
"@types/semver": "^7.3.13",
"@types/serve-static": "^1.15.0",
"@vitest/coverage-c8": "^0.25.3",
"c8": "^7.12.0",
"changelogen": "^0.4.0",
"edge-runtime": "2.0.2",
"eslint": "^8.28.0",
"eslint-config-unjs": "^0.0.2",
"execa": "^6.1.0",
"expect-type": "^0.15.0",
"miniflare": "^2.11.0",
"typescript": "^4.9.3",
"unbuild": "^1.0.1",
"vitest": "^0.25.3"
},
"packageManager": "pnpm@7.17.1",
"engines": {
"node": "^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"@types/react",
"react-dom",
"@algolia/client-search"
]
}
}
}