forked from vercel/edge-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
175 lines (175 loc) · 4.2 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
175
{
"name": "@edge-runtime/root",
"homepage": "https://github.com/vercel/edge-runtime#readme",
"version": "0.0.0",
"contributors": [
{
"name": "Kiko Beats",
"email": "[email protected]"
},
{
"name": "Gal Schlezinger",
"email": "[email protected]"
},
{
"name": "Javi Velasco",
"email": "[email protected]"
},
{
"name": "Balázs Orbán",
"email": "[email protected]"
},
{
"name": "Damien Simonin Feugas",
"email": "[email protected]"
},
{
"name": "nkzawa",
"email": "[email protected]"
},
{
"name": "Lee Robinson",
"email": "[email protected]"
},
{
"name": "Steven",
"email": "[email protected]"
},
{
"name": "Yixuan Xu",
"email": "[email protected]"
},
{
"name": "Yamagishi Kazutoshi",
"email": "[email protected]"
},
{
"name": "Justin Ridgewell",
"email": "[email protected]"
},
{
"name": "Shohei Maeda",
"email": "[email protected]"
},
{
"name": "Jan Potoms",
"email": "[email protected]"
},
{
"name": "await-ovo",
"email": "[email protected]"
},
{
"name": "Wyatt Johnson",
"email": "[email protected]"
},
{
"name": "Adam Mcgrath",
"email": "[email protected]"
},
{
"name": "akitaSummer",
"email": "[email protected]"
},
{
"name": "Benjamin Cirmena",
"email": "[email protected]"
},
{
"name": "Ethan Arrowood",
"email": "[email protected]"
},
{
"name": "Andrew Clark",
"email": "[email protected]"
},
{
"name": "Ian Mitchell",
"email": "[email protected]"
},
{
"name": "Simon Mathewson",
"email": "[email protected]"
},
{
"name": "SukkaW",
"email": "[email protected]"
},
{
"name": "Matheus Fernandes",
"email": "[email protected]"
},
{
"name": "Filip Skokan",
"email": "[email protected]"
},
{
"name": "Stefan Judis",
"email": "[email protected]"
},
{
"name": "Steren",
"email": "[email protected]"
}
],
"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.13",
"@types/node": "16",
"c8": "latest",
"esbuild": "0.24.0",
"finepack": "latest",
"git-authors-cli": "latest",
"jest": "29.7.0",
"jest-watch-typeahead": "2.2.2",
"nano-staged": "latest",
"next": "latest",
"prettier": "latest",
"simple-git-hooks": "latest",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"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": "[email protected]",
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged"
}
}