forked from vercel/edge-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
174 lines (174 loc) · 4.18 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
{
"name": "@edge-runtime/root",
"homepage": "https://github.com/vercel/edge-runtime#readme",
"version": "0.0.0",
"contributors": [
{
"name": "Kiko Beats",
"email": "josefrancisco.verdu@gmail.com"
},
{
"name": "Gal Schlezinger",
"email": "gal@spitfire.co.il"
},
{
"name": "Javi Velasco",
"email": "javier.velasco86@gmail.com"
},
{
"name": "Balázs Orbán",
"email": "info@balazsorban.com"
},
{
"name": "Damien Simonin Feugas",
"email": "damien@vercel.com"
},
{
"name": "nkzawa",
"email": "naoyuki.kanezawa@gmail.com"
},
{
"name": "Lee Robinson",
"email": "me@leerob.io"
},
{
"name": "Steven",
"email": "steven@ceriously.com"
},
{
"name": "Yixuan Xu",
"email": "yixuanxu94@outlook.com"
},
{
"name": "Yamagishi Kazutoshi",
"email": "ykzts@desire.sh"
},
{
"name": "Justin Ridgewell",
"email": "justin@ridgewell.name"
},
{
"name": "Shohei Maeda",
"email": "11495867+smaeda-ks@users.noreply.github.com"
},
{
"name": "Jan Potoms",
"email": "2109932+Janpot@users.noreply.github.com"
},
{
"name": "await-ovo",
"email": "41503212+await-ovo@users.noreply.github.com"
},
{
"name": "Wyatt Johnson",
"email": "accounts+github@wyattjoh.ca"
},
{
"name": "Adam Mcgrath",
"email": "adamjmcgrath@gmail.com"
},
{
"name": "akitaSummer",
"email": "akitasummer@outlook.com"
},
{
"name": "Benjamin Cirmena",
"email": "benji_cirmena@hotmail.com"
},
{
"name": "Ethan Arrowood",
"email": "ethan@arrowood.dev"
},
{
"name": "Andrew Clark",
"email": "git@andrewclark.io"
},
{
"name": "Ian Mitchell",
"email": "ian.mitchell@hey.com"
},
{
"name": "Simon Mathewson",
"email": "info@simonmathewson.com"
},
{
"name": "SukkaW",
"email": "isukkaw@gmail.com"
},
{
"name": "Matheus Fernandes",
"email": "matheus.frndes@gmail.com"
},
{
"name": "Filip Skokan",
"email": "panva.ip@gmail.com"
},
{
"name": "Stefan Judis",
"email": "stefanjudis@gmail.com"
},
{
"name": "Steren",
"email": "steren.giannini@gmail.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/vercel/edge-runtime.git"
},
"bugs": {
"url": "https://github.com/vercel/edge-runtime/issues"
},
"devDependencies": {
"@changesets/cli": "latest",
"@jest/types": "29.5.0",
"@svitejs/changesets-changelog-github-compact": "latest",
"@types/jest": "29.5.10",
"@types/node": "16",
"c8": "latest",
"esbuild": "0.19.7",
"finepack": "latest",
"git-authors-cli": "latest",
"jest": "29.7.0",
"jest-watch-typeahead": "2.2.2",
"nano-staged": "latest",
"prettier": "latest",
"simple-git-hooks": "latest",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"turbo": "latest",
"typescript": "latest"
},
"engines": {
"node": ">=16"
},
"scripts": {
"build": "turbo run build",
"clean": "pnpm -r run clean && rm -rf ./node_modules",
"clean:build": "pnpm -r run clean:build",
"clean:node": "pnpm -r run clean:node",
"contributors": "git-authors-cli && finepack",
"coverage": "c8 report",
"lockfile": "pnpm install --lockfile && git add pnpm-lock.yaml && git commit -m \"build: regenerate lock\"",
"postinstall": "./node_modules/.bin/simple-git-hooks",
"prebuild": "pnpm -r run clean:build",
"test": "c8 turbo run test",
"update": "pnpm -r exec ncu -- --upgrade && ncu -- --upgrade",
"update:check": "pnpm -r exec ncu -- --errorLevel 2 && ncu -- --errorLevel 2",
"version:prepare": "changeset version && pnpm install --no-frozen-lockfile",
"version:publish": "changeset publish"
},
"private": true,
"nano-staged": {
"*.{ts,tsx,md,mdx,js,jsx}": [
"prettier --write"
],
"package.json": [
"finepack"
]
},
"packageManager": "pnpm@8.4.0",
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged"
}
}